diff --git a/Dockerfile b/Dockerfile index 72f1eba6..989c9abb 100755 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,10 @@ -FROM jupyter/base-notebook:latest +FROM mcr.microsoft.com/dotnet/sdk:7.0 -# Install .NET CLI dependencies +RUN apt-get update \ + && apt-get -y upgrade \ + && apt-get -y install python3 python3-pip python3-dev ipython3 + +RUN python3 -m pip install --no-cache-dir notebook jupyterlab ARG NB_USER=fsdocs-user ARG NB_UID=1000 @@ -8,78 +12,18 @@ ENV USER ${NB_USER} ENV NB_UID ${NB_UID} ENV HOME /home/${NB_USER} -WORKDIR ${HOME} +RUN adduser --disabled-password \ + --gecos "Default user" \ + --uid ${NB_UID} \ + ${NB_USER} +COPY . ${HOME} USER root -RUN apt-get update -RUN apt-get install -y curl - -ENV \ - # Enable detection of running in a container - DOTNET_RUNNING_IN_CONTAINER=true \ - # Enable correct mode for dotnet watch (only mode supported in a container) - DOTNET_USE_POLLING_FILE_WATCHER=true \ - # Skip extraction of XML docs - generally not useful within an image/container - helps performance - NUGET_XMLDOC_MODE=skip \ - # Opt out of telemetry until after we install jupyter when building the image, this prevents caching of machine id - DOTNET_INTERACTIVE_CLI_TELEMETRY_OPTOUT=true - -# Install .NET CLI dependencies -RUN apt-get update \ - && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ - libc6 \ - libgcc1 \ - libgssapi-krb5-2 \ - libicu66 \ - libssl1.1 \ - libstdc++6 \ - zlib1g \ - && rm -rf /var/lib/apt/lists/* - -# Install .NET Core SDK - -# When updating the SDK version, the sha512 value a few lines down must also be updated. -ENV DOTNET_SDK_VERSION 5.0.101 - -RUN dotnet_sdk_version=5.0.101 \ - && curl -SL --output dotnet.tar.gz https://dotnetcli.azureedge.net/dotnet/Sdk/$dotnet_sdk_version/dotnet-sdk-$dotnet_sdk_version-linux-x64.tar.gz \ - && dotnet_sha512='398d88099d765b8f5b920a3a2607c2d2d8a946786c1a3e51e73af1e663f0ee770b2b624a630b1bec1ceed43628ea8bc97963ba6c870d42bec064bde1cd1c9edb' \ - && echo "$dotnet_sha512 dotnet.tar.gz" | sha512sum -c - \ - && mkdir -p /usr/share/dotnet \ - && tar -ozxf dotnet.tar.gz -C /usr/share/dotnet \ - && rm dotnet.tar.gz \ - && ln -s /usr/share/dotnet/dotnet /usr/bin/dotnet \ - # Trigger first run experience by running arbitrary cmd - && dotnet help - -# Copy notebooks - -COPY ./ ${HOME}/notebooks/ - -# Copy package sources - -COPY ./NuGet.config ${HOME}/nuget.config - RUN chown -R ${NB_UID} ${HOME} -USER ${USER} - -#Install nteract -RUN pip install nteract_on_jupyter - -# Install lastest build from master branch of Microsoft.DotNet.Interactive -RUN dotnet tool install -g Microsoft.dotnet-interactive --add-source "https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools/nuget/v3/index.json" - -#latest stable from nuget.org -#RUN dotnet tool install -g Microsoft.dotnet-interactive --add-source "https://api.nuget.org/v3/index.json" - -ENV PATH="${PATH}:${HOME}/.dotnet/tools" -RUN echo "$PATH" +USER ${NB_USER} -# Install kernel specs -RUN dotnet interactive jupyter install +ENV PATH="${PATH}:$HOME/.dotnet/tools/" -# Enable telemetry once we install jupyter for the image -ENV DOTNET_INTERACTIVE_CLI_TELEMETRY_OPTOUT=false +RUN dotnet tool install --global Microsoft.dotnet-interactive --version 1.0.410202 -# Set root to notebooks -WORKDIR ${HOME}/notebooks/ \ No newline at end of file +RUN dotnet-interactive jupyter install diff --git a/content/fsdocs-custom.css b/content/fsdocs-custom.css deleted file mode 100644 index f8b2d7df..00000000 --- a/content/fsdocs-custom.css +++ /dev/null @@ -1,13636 +0,0 @@ -@import url("https://fonts.googleapis.com/css?family=Nunito+Sans:400,700"); -/*! bulma.io v0.9.2 | MIT License | github.com/jgthms/bulma */ -/* Bulma Utilities */ -.pagination-previous, -.pagination-next, -.pagination-link, -.pagination-ellipsis, .file-cta, -.file-name, .select select, .textarea, .input, .button { - -moz-appearance: none; - -webkit-appearance: none; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border: 1px solid transparent; - border-radius: 4px; - -webkit-box-shadow: none; - box-shadow: none; - display: -webkit-inline-box; - display: -ms-inline-flexbox; - display: inline-flex; - font-size: 1rem; - height: 2.5em; - -webkit-box-pack: start; - -ms-flex-pack: start; - justify-content: flex-start; - line-height: 1.5; - padding-bottom: calc(0.5em - 1px); - padding-left: calc(0.75em - 1px); - padding-right: calc(0.75em - 1px); - padding-top: calc(0.5em - 1px); - position: relative; - vertical-align: top; -} - - .pagination-previous:focus, - .pagination-next:focus, - .pagination-link:focus, - .pagination-ellipsis:focus, .file-cta:focus, - .file-name:focus, .select select:focus, .textarea:focus, .input:focus, .button:focus, .is-focused.pagination-previous, - .is-focused.pagination-next, - .is-focused.pagination-link, - .is-focused.pagination-ellipsis, .is-focused.file-cta, - .is-focused.file-name, .select select.is-focused, .is-focused.textarea, .is-focused.input, .is-focused.button, .pagination-previous:active, - .pagination-next:active, - .pagination-link:active, - .pagination-ellipsis:active, .file-cta:active, - .file-name:active, .select select:active, .textarea:active, .input:active, .button:active, .is-active.pagination-previous, .pagination-previous.active, - .is-active.pagination-next, - .pagination-next.active, - .is-active.pagination-link, - .pagination-link.active, - .is-active.pagination-ellipsis, - .pagination-ellipsis.active, .is-active.file-cta, .file-cta.active, - .is-active.file-name, - .file-name.active, .select select.is-active, .select select.active, .is-active.textarea, .textarea.active, .is-active.input, .input.active, .is-active.button, .button.active { - outline: none; - } - - [disabled].pagination-previous, - [disabled].pagination-next, - [disabled].pagination-link, - [disabled].pagination-ellipsis, [disabled].file-cta, - [disabled].file-name, .select select[disabled], [disabled].textarea, [disabled].input, [disabled].button, fieldset[disabled] .pagination-previous, - fieldset[disabled] .pagination-next, - fieldset[disabled] .pagination-link, - fieldset[disabled] .pagination-ellipsis, fieldset[disabled] .file-cta, - fieldset[disabled] .file-name, fieldset[disabled] .select select, .select fieldset[disabled] select, fieldset[disabled] .textarea, fieldset[disabled] .input, fieldset[disabled] .button { - cursor: not-allowed; - } - -.is-unselectable, .tabs, .pagination-previous, -.pagination-next, -.pagination-link, -.pagination-ellipsis, .breadcrumb, .file, .button { - -webkit-touch-callout: none; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -.navbar-link:not(.is-arrowless)::after, .select:not(.is-multiple):not(.is-loading)::after { - border: 3px solid transparent; - border-radius: 2px; - border-right: 0; - border-top: 0; - content: " "; - display: block; - height: 0.625em; - margin-top: -0.4375em; - pointer-events: none; - position: absolute; - top: 50%; - -webkit-transform: rotate(-45deg); - -ms-transform: rotate(-45deg); - transform: rotate(-45deg); - -webkit-transform-origin: center; - -ms-transform-origin: center; - transform-origin: center; - width: 0.625em; -} - -.tabs:not(:last-child), .pagination:not(:last-child), .message:not(:last-child), .level:not(:last-child), .breadcrumb:not(:last-child), .highlight:not(:last-child), .block:not(:last-child), .title:not(:last-child), -.subtitle:not(:last-child), .table-container:not(:last-child), .table:not(:last-child), table:not(:last-child), .progress:not(:last-child), .notification:not(:last-child), .content:not(:last-child), .box:not(:last-child) { - margin-bottom: 1.5rem; -} - -.modal-close, .delete { - -webkit-touch-callout: none; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - -moz-appearance: none; - -webkit-appearance: none; - background-color: rgba(10, 10, 10, 0.2); - border: none; - border-radius: 290486px; - cursor: pointer; - pointer-events: auto; - display: inline-block; - -webkit-box-flex: 0; - -ms-flex-positive: 0; - flex-grow: 0; - -ms-flex-negative: 0; - flex-shrink: 0; - font-size: 0; - height: 20px; - max-height: 20px; - max-width: 20px; - min-height: 20px; - min-width: 20px; - outline: none; - position: relative; - vertical-align: top; - width: 20px; -} - - .modal-close::before, .delete::before, .modal-close::after, .delete::after { - background-color: white; - content: ""; - display: block; - left: 50%; - position: absolute; - top: 50%; - -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg); - -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg); - transform: translateX(-50%) translateY(-50%) rotate(45deg); - -webkit-transform-origin: center center; - -ms-transform-origin: center center; - transform-origin: center center; - } - - .modal-close::before, .delete::before { - height: 2px; - width: 50%; - } - - .modal-close::after, .delete::after { - height: 50%; - width: 2px; - } - - .modal-close:hover, .delete:hover, .modal-close:focus, .delete:focus { - background-color: rgba(10, 10, 10, 0.3); - } - - .modal-close:active, .delete:active { - background-color: rgba(10, 10, 10, 0.4); - } - -.is-small.modal-close, .is-small.delete { - height: 16px; - max-height: 16px; - max-width: 16px; - min-height: 16px; - min-width: 16px; - width: 16px; -} - -.is-medium.modal-close, .is-medium.delete { - height: 24px; - max-height: 24px; - max-width: 24px; - min-height: 24px; - min-width: 24px; - width: 24px; -} - -.is-large.modal-close, .is-large.delete { - height: 32px; - max-height: 32px; - max-width: 32px; - min-height: 32px; - min-width: 32px; - width: 32px; -} - -.control.is-loading::after, .select.is-loading::after, .loader, .button.is-loading::after { - -webkit-animation: spinAround 500ms infinite linear; - animation: spinAround 500ms infinite linear; - border: 2px solid #dbdbdb; - border-radius: 290486px; - border-right-color: transparent; - border-top-color: transparent; - content: ""; - display: block; - height: 1em; - position: relative; - width: 1em; -} - -.hero-video, .is-overlay, .modal-background, .modal, .image.is-square img, -.image.is-square .has-ratio, .image.is-1by1 img, -.image.is-1by1 .has-ratio, .image.is-5by4 img, -.image.is-5by4 .has-ratio, .image.is-4by3 img, -.image.is-4by3 .has-ratio, .image.is-3by2 img, -.image.is-3by2 .has-ratio, .image.is-5by3 img, -.image.is-5by3 .has-ratio, .image.is-16by9 img, -.image.is-16by9 .has-ratio, .image.is-2by1 img, -.image.is-2by1 .has-ratio, .image.is-3by1 img, -.image.is-3by1 .has-ratio, .image.is-4by5 img, -.image.is-4by5 .has-ratio, .image.is-3by4 img, -.image.is-3by4 .has-ratio, .image.is-2by3 img, -.image.is-2by3 .has-ratio, .image.is-3by5 img, -.image.is-3by5 .has-ratio, .image.is-9by16 img, -.image.is-9by16 .has-ratio, .image.is-1by2 img, -.image.is-1by2 .has-ratio, .image.is-1by3 img, -.image.is-1by3 .has-ratio { - bottom: 0; - left: 0; - position: absolute; - right: 0; - top: 0; -} - -/* Bulma Base */ -/*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */ -html, -body, -p, -ol, -ul, -li, -dl, -dt, -dd, -blockquote, -figure, -fieldset, -legend, -textarea, -pre, -iframe, -hr, -h1, -h2, -h3, -h4, -h5, -h6 { - margin: 0; - padding: 0; -} - -h1, -h2, -h3, -h4, -h5, -h6 { - font-size: 100%; - font-weight: normal; -} - -ul { - list-style: none; -} - -button, -input, -select, -textarea { - margin: 0; -} - -html { - -webkit-box-sizing: border-box; - box-sizing: border-box; -} - -*, *::before, *::after { - -webkit-box-sizing: inherit; - box-sizing: inherit; -} - -img, -video { - height: auto; - max-width: 100%; -} - -iframe { - border: 0; -} - -table { - border-collapse: collapse; - border-spacing: 0; -} - -td, -th { - padding: 0; -} - - td:not([align]), - th:not([align]) { - text-align: inherit; - } - -html { - background-color: white; - font-size: 16px; - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; - min-width: 300px; - overflow-x: hidden; - overflow-y: scroll; - text-rendering: optimizeLegibility; - -webkit-text-size-adjust: 100%; - -moz-text-size-adjust: 100%; - -ms-text-size-adjust: 100%; - text-size-adjust: 100%; -} - -article, -aside, -figure, -footer, -header, -hgroup, -section { - display: block; -} - -body, -button, -input, -optgroup, -select, -textarea { - font-family: "Nunito", sans-serif; -} - -code, -pre { - -moz-osx-font-smoothing: auto; - -webkit-font-smoothing: auto; - font-family: monospace; -} - -body { - color: #4a4a4a; - font-size: 1em; - font-weight: 400; - line-height: 1.5; -} - -a { - color: #378BBA; - cursor: pointer; - text-decoration: none; -} - - a strong { - color: currentColor; - } - - a:hover { - color: #A00975; - } - -code { - background-color: whitesmoke; - color: #da1039; - font-size: 0.875em; - font-weight: normal; - padding: 0.25em 0.5em 0.25em; -} - -hr { - background-color: whitesmoke; - border: none; - display: block; - height: 2px; - margin: 1.5rem 0; -} - -img { - height: auto; - max-width: 100%; -} - -input[type="checkbox"], -input[type="radio"] { - vertical-align: baseline; -} - -small { - font-size: 0.875em; -} - -span { - font-style: inherit; - font-weight: inherit; -} - -strong { - color: #363636; - font-weight: 700; -} - -fieldset { - border: none; -} - -pre { - -webkit-overflow-scrolling: touch; - background-color: whitesmoke; - color: #4a4a4a; - font-size: 0.875em; - overflow-x: auto; - padding: 1.25rem 1.5rem; - white-space: pre; - word-wrap: normal; -} - - pre code { - background-color: transparent; - color: currentColor; - font-size: 1em; - padding: 0; - } - -table td, -table th { - vertical-align: top; -} - - table td:not([align]), - table th:not([align]) { - text-align: inherit; - } - -table th { - color: #363636; -} - -@-webkit-keyframes spinAround { - from { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - - to { - -webkit-transform: rotate(359deg); - transform: rotate(359deg); - } -} - -@keyframes spinAround { - from { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - - to { - -webkit-transform: rotate(359deg); - transform: rotate(359deg); - } -} - -/* Bulma Elements */ -.box { - background-color: white; - border-radius: 6px; - -webkit-box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1), 0 0px 0 1px rgba(10, 10, 10, 0.02); - box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1), 0 0px 0 1px rgba(10, 10, 10, 0.02); - color: #4a4a4a; - display: block; - padding: 1.25rem; -} - -a.box:hover, a.box:focus { - -webkit-box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1), 0 0 0 1px #378BBA; - box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1), 0 0 0 1px #378BBA; -} - -a.box:active { - -webkit-box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.2), 0 0 0 1px #378BBA; - box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.2), 0 0 0 1px #378BBA; -} - -.button { - background-color: white; - border-color: #dbdbdb; - border-width: 1px; - color: #363636; - cursor: pointer; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - padding-bottom: calc(0.5em - 1px); - padding-left: 1em; - padding-right: 1em; - padding-top: calc(0.5em - 1px); - text-align: center; - white-space: nowrap; -} - - .button strong { - color: inherit; - } - - .button .icon, .button .icon.is-small, .button .icon.is-medium, .button .icon.is-large { - height: 1.5em; - width: 1.5em; - } - - .button .icon:first-child:not(:last-child) { - margin-left: calc(-0.5em - 1px); - margin-right: 0.25em; - } - - .button .icon:last-child:not(:first-child) { - margin-left: 0.25em; - margin-right: calc(-0.5em - 1px); - } - - .button .icon:first-child:last-child { - margin-left: calc(-0.5em - 1px); - margin-right: calc(-0.5em - 1px); - } - - .button:hover, .button.is-hovered { - border-color: #b5b5b5; - color: #A00975; - } - - .button:focus, .button.is-focused { - border-color: #3273dc; - color: #363636; - } - - .button:focus:not(:active), .button.is-focused:not(:active) { - -webkit-box-shadow: 0 0 0 0.125em rgba(55, 139, 186, 0.25); - box-shadow: 0 0 0 0.125em rgba(55, 139, 186, 0.25); - } - - .button:active, .button.is-active, .button.active { - border-color: #4a4a4a; - color: #363636; - } - - .button.is-text { - background-color: transparent; - border-color: transparent; - color: #4a4a4a; - text-decoration: underline; - } - - .button.is-text:hover, .button.is-text.is-hovered, .button.is-text:focus, .button.is-text.is-focused { - background-color: whitesmoke; - color: #363636; - } - - .button.is-text:active, .button.is-text.is-active, .is-text.active { - background-color: #e8e8e8; - color: #363636; - } - - .button.is-text[disabled], fieldset[disabled] .button.is-text { - background-color: transparent; - border-color: transparent; - -webkit-box-shadow: none; - box-shadow: none; - } - - .button.is-ghost { - background: none; - border-color: transparent; - color: #378BBA; - text-decoration: none; - } - - .button.is-ghost:hover, .button.is-ghost.is-hovered { - color: #378BBA; - text-decoration: underline; - } - - .button.is-white { - background-color: white; - border-color: transparent; - color: #0a0a0a; - } - - .button.is-white:hover, .button.is-white.is-hovered { - background-color: #f9f9f9; - border-color: transparent; - color: #0a0a0a; - } - - .button.is-white:focus, .button.is-white.is-focused { - border-color: transparent; - color: #0a0a0a; - } - - .button.is-white:focus:not(:active), .button.is-white.is-focused:not(:active) { - -webkit-box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25); - box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25); - } - - .button.is-white:active, .button.is-white.is-active, .is-white.active { - background-color: #f2f2f2; - border-color: transparent; - color: #0a0a0a; - } - - .button.is-white[disabled], fieldset[disabled] .button.is-white { - background-color: white; - border-color: transparent; - -webkit-box-shadow: none; - box-shadow: none; - } - - .button.is-white.is-inverted { - background-color: #0a0a0a; - color: white; - } - - .button.is-white.is-inverted:hover, .button.is-white.is-inverted.is-hovered { - background-color: black; - } - - .button.is-white.is-inverted[disabled], fieldset[disabled] .button.is-white.is-inverted { - background-color: #0a0a0a; - border-color: transparent; - -webkit-box-shadow: none; - box-shadow: none; - color: white; - } - - .button.is-white.is-loading::after { - border-color: transparent transparent #0a0a0a #0a0a0a !important; - } - - .button.is-white.is-outlined { - background-color: transparent; - border-color: white; - color: white; - } - - .button.is-white.is-outlined:hover, .button.is-white.is-outlined.is-hovered, .button.is-white.is-outlined:focus, .button.is-white.is-outlined.is-focused { - background-color: white; - border-color: white; - color: #0a0a0a; - } - - .button.is-white.is-outlined.is-loading::after { - border-color: transparent transparent white white !important; - } - - .button.is-white.is-outlined.is-loading:hover::after, .button.is-white.is-outlined.is-loading.is-hovered::after, .button.is-white.is-outlined.is-loading:focus::after, .button.is-white.is-outlined.is-loading.is-focused::after { - border-color: transparent transparent #0a0a0a #0a0a0a !important; - } - - .button.is-white.is-outlined[disabled], fieldset[disabled] .button.is-white.is-outlined { - background-color: transparent; - border-color: white; - -webkit-box-shadow: none; - box-shadow: none; - color: white; - } - - .button.is-white.is-inverted.is-outlined { - background-color: transparent; - border-color: #0a0a0a; - color: #0a0a0a; - } - - .button.is-white.is-inverted.is-outlined:hover, .button.is-white.is-inverted.is-outlined.is-hovered, .button.is-white.is-inverted.is-outlined:focus, .button.is-white.is-inverted.is-outlined.is-focused { - background-color: #0a0a0a; - color: white; - } - - .button.is-white.is-inverted.is-outlined.is-loading:hover::after, .button.is-white.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-white.is-inverted.is-outlined.is-loading:focus::after, .button.is-white.is-inverted.is-outlined.is-loading.is-focused::after { - border-color: transparent transparent white white !important; - } - - .button.is-white.is-inverted.is-outlined[disabled], fieldset[disabled] .button.is-white.is-inverted.is-outlined { - background-color: transparent; - border-color: #0a0a0a; - -webkit-box-shadow: none; - box-shadow: none; - color: #0a0a0a; - } - - .button.is-black { - background-color: #0a0a0a; - border-color: transparent; - color: white; - } - - .button.is-black:hover, .button.is-black.is-hovered { - background-color: #040404; - border-color: transparent; - color: white; - } - - .button.is-black:focus, .button.is-black.is-focused { - border-color: transparent; - color: white; - } - - .button.is-black:focus:not(:active), .button.is-black.is-focused:not(:active) { - -webkit-box-shadow: 0 0 0 0.125em rgba(10, 10, 10, 0.25); - box-shadow: 0 0 0 0.125em rgba(10, 10, 10, 0.25); - } - - .button.is-black:active, .button.is-black.is-active, .is-black.active { - background-color: black; - border-color: transparent; - color: white; - } - - .button.is-black[disabled], fieldset[disabled] .button.is-black { - background-color: #0a0a0a; - border-color: transparent; - -webkit-box-shadow: none; - box-shadow: none; - } - - .button.is-black.is-inverted { - background-color: white; - color: #0a0a0a; - } - - .button.is-black.is-inverted:hover, .button.is-black.is-inverted.is-hovered { - background-color: #f2f2f2; - } - - .button.is-black.is-inverted[disabled], fieldset[disabled] .button.is-black.is-inverted { - background-color: white; - border-color: transparent; - -webkit-box-shadow: none; - box-shadow: none; - color: #0a0a0a; - } - - .button.is-black.is-loading::after { - border-color: transparent transparent white white !important; - } - - .button.is-black.is-outlined { - background-color: transparent; - border-color: #0a0a0a; - color: #0a0a0a; - } - - .button.is-black.is-outlined:hover, .button.is-black.is-outlined.is-hovered, .button.is-black.is-outlined:focus, .button.is-black.is-outlined.is-focused { - background-color: #0a0a0a; - border-color: #0a0a0a; - color: white; - } - - .button.is-black.is-outlined.is-loading::after { - border-color: transparent transparent #0a0a0a #0a0a0a !important; - } - - .button.is-black.is-outlined.is-loading:hover::after, .button.is-black.is-outlined.is-loading.is-hovered::after, .button.is-black.is-outlined.is-loading:focus::after, .button.is-black.is-outlined.is-loading.is-focused::after { - border-color: transparent transparent white white !important; - } - - .button.is-black.is-outlined[disabled], fieldset[disabled] .button.is-black.is-outlined { - background-color: transparent; - border-color: #0a0a0a; - -webkit-box-shadow: none; - box-shadow: none; - color: #0a0a0a; - } - - .button.is-black.is-inverted.is-outlined { - background-color: transparent; - border-color: white; - color: white; - } - - .button.is-black.is-inverted.is-outlined:hover, .button.is-black.is-inverted.is-outlined.is-hovered, .button.is-black.is-inverted.is-outlined:focus, .button.is-black.is-inverted.is-outlined.is-focused { - background-color: white; - color: #0a0a0a; - } - - .button.is-black.is-inverted.is-outlined.is-loading:hover::after, .button.is-black.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-black.is-inverted.is-outlined.is-loading:focus::after, .button.is-black.is-inverted.is-outlined.is-loading.is-focused::after { - border-color: transparent transparent #0a0a0a #0a0a0a !important; - } - - .button.is-black.is-inverted.is-outlined[disabled], fieldset[disabled] .button.is-black.is-inverted.is-outlined { - background-color: transparent; - border-color: white; - -webkit-box-shadow: none; - box-shadow: none; - color: white; - } - - .button.is-light { - background-color: whitesmoke; - border-color: transparent; - color: rgba(0, 0, 0, 0.7); - } - - .button.is-light:hover, .button.is-light.is-hovered { - background-color: #eeeeee; - border-color: transparent; - color: rgba(0, 0, 0, 0.7); - } - - .button.is-light:focus, .button.is-light.is-focused { - border-color: transparent; - color: rgba(0, 0, 0, 0.7); - } - - .button.is-light:focus:not(:active), .button.is-light.is-focused:not(:active) { - -webkit-box-shadow: 0 0 0 0.125em rgba(245, 245, 245, 0.25); - box-shadow: 0 0 0 0.125em rgba(245, 245, 245, 0.25); - } - - .button.is-light:active, .button.is-light.is-active, .is-light.active { - background-color: #e8e8e8; - border-color: transparent; - color: rgba(0, 0, 0, 0.7); - } - - .button.is-light[disabled], fieldset[disabled] .button.is-light { - background-color: whitesmoke; - border-color: transparent; - -webkit-box-shadow: none; - box-shadow: none; - } - - .button.is-light.is-inverted { - background-color: rgba(0, 0, 0, 0.7); - color: whitesmoke; - } - - .button.is-light.is-inverted:hover, .button.is-light.is-inverted.is-hovered { - background-color: rgba(0, 0, 0, 0.7); - } - - .button.is-light.is-inverted[disabled], fieldset[disabled] .button.is-light.is-inverted { - background-color: rgba(0, 0, 0, 0.7); - border-color: transparent; - -webkit-box-shadow: none; - box-shadow: none; - color: whitesmoke; - } - - .button.is-light.is-loading::after { - border-color: transparent transparent rgba(0, 0, 0, 0.7) rgba(0, 0, 0, 0.7) !important; - } - - .button.is-light.is-outlined { - background-color: transparent; - border-color: whitesmoke; - color: whitesmoke; - } - - .button.is-light.is-outlined:hover, .button.is-light.is-outlined.is-hovered, .button.is-light.is-outlined:focus, .button.is-light.is-outlined.is-focused { - background-color: whitesmoke; - border-color: whitesmoke; - color: rgba(0, 0, 0, 0.7); - } - - .button.is-light.is-outlined.is-loading::after { - border-color: transparent transparent whitesmoke whitesmoke !important; - } - - .button.is-light.is-outlined.is-loading:hover::after, .button.is-light.is-outlined.is-loading.is-hovered::after, .button.is-light.is-outlined.is-loading:focus::after, .button.is-light.is-outlined.is-loading.is-focused::after { - border-color: transparent transparent rgba(0, 0, 0, 0.7) rgba(0, 0, 0, 0.7) !important; - } - - .button.is-light.is-outlined[disabled], fieldset[disabled] .button.is-light.is-outlined { - background-color: transparent; - border-color: whitesmoke; - -webkit-box-shadow: none; - box-shadow: none; - color: whitesmoke; - } - - .button.is-light.is-inverted.is-outlined { - background-color: transparent; - border-color: rgba(0, 0, 0, 0.7); - color: rgba(0, 0, 0, 0.7); - } - - .button.is-light.is-inverted.is-outlined:hover, .button.is-light.is-inverted.is-outlined.is-hovered, .button.is-light.is-inverted.is-outlined:focus, .button.is-light.is-inverted.is-outlined.is-focused { - background-color: rgba(0, 0, 0, 0.7); - color: whitesmoke; - } - - .button.is-light.is-inverted.is-outlined.is-loading:hover::after, .button.is-light.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-light.is-inverted.is-outlined.is-loading:focus::after, .button.is-light.is-inverted.is-outlined.is-loading.is-focused::after { - border-color: transparent transparent whitesmoke whitesmoke !important; - } - - .button.is-light.is-inverted.is-outlined[disabled], fieldset[disabled] .button.is-light.is-inverted.is-outlined { - background-color: transparent; - border-color: rgba(0, 0, 0, 0.7); - -webkit-box-shadow: none; - box-shadow: none; - color: rgba(0, 0, 0, 0.7); - } - - .button.is-dark { - background-color: #200117; - border-color: transparent; - color: #fff; - } - - .button.is-dark:hover, .button.is-dark.is-hovered { - background-color: #14010e; - border-color: transparent; - color: #fff; - } - - .button.is-dark:focus, .button.is-dark.is-focused { - border-color: transparent; - color: #fff; - } - - .button.is-dark:focus:not(:active), .button.is-dark.is-focused:not(:active) { - -webkit-box-shadow: 0 0 0 0.125em rgba(32, 1, 23, 0.25); - box-shadow: 0 0 0 0.125em rgba(32, 1, 23, 0.25); - } - - .button.is-dark:active, .button.is-dark.is-active, .is-dark.active { - background-color: #070005; - border-color: transparent; - color: #fff; - } - - .button.is-dark[disabled], fieldset[disabled] .button.is-dark { - background-color: #200117; - border-color: transparent; - -webkit-box-shadow: none; - box-shadow: none; - } - - .button.is-dark.is-inverted { - background-color: #fff; - color: #200117; - } - - .button.is-dark.is-inverted:hover, .button.is-dark.is-inverted.is-hovered { - background-color: #f2f2f2; - } - - .button.is-dark.is-inverted[disabled], fieldset[disabled] .button.is-dark.is-inverted { - background-color: #fff; - border-color: transparent; - -webkit-box-shadow: none; - box-shadow: none; - color: #200117; - } - - .button.is-dark.is-loading::after { - border-color: transparent transparent #fff #fff !important; - } - - .button.is-dark.is-outlined { - background-color: transparent; - border-color: #200117; - color: #200117; - } - - .button.is-dark.is-outlined:hover, .button.is-dark.is-outlined.is-hovered, .button.is-dark.is-outlined:focus, .button.is-dark.is-outlined.is-focused { - background-color: #200117; - border-color: #200117; - color: #fff; - } - - .button.is-dark.is-outlined.is-loading::after { - border-color: transparent transparent #200117 #200117 !important; - } - - .button.is-dark.is-outlined.is-loading:hover::after, .button.is-dark.is-outlined.is-loading.is-hovered::after, .button.is-dark.is-outlined.is-loading:focus::after, .button.is-dark.is-outlined.is-loading.is-focused::after { - border-color: transparent transparent #fff #fff !important; - } - - .button.is-dark.is-outlined[disabled], fieldset[disabled] .button.is-dark.is-outlined { - background-color: transparent; - border-color: #200117; - -webkit-box-shadow: none; - box-shadow: none; - color: #200117; - } - - .button.is-dark.is-inverted.is-outlined { - background-color: transparent; - border-color: #fff; - color: #fff; - } - - .button.is-dark.is-inverted.is-outlined:hover, .button.is-dark.is-inverted.is-outlined.is-hovered, .button.is-dark.is-inverted.is-outlined:focus, .button.is-dark.is-inverted.is-outlined.is-focused { - background-color: #fff; - color: #200117; - } - - .button.is-dark.is-inverted.is-outlined.is-loading:hover::after, .button.is-dark.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-dark.is-inverted.is-outlined.is-loading:focus::after, .button.is-dark.is-inverted.is-outlined.is-loading.is-focused::after { - border-color: transparent transparent #200117 #200117 !important; - } - - .button.is-dark.is-inverted.is-outlined[disabled], fieldset[disabled] .button.is-dark.is-inverted.is-outlined { - background-color: transparent; - border-color: #fff; - -webkit-box-shadow: none; - box-shadow: none; - color: #fff; - } - - .button.is-primary { - background-color: #A00975; - border-color: transparent; - color: #fff; - } - - .button.is-primary:hover, .button.is-primary.is-hovered { - background-color: #94086c; - border-color: transparent; - color: #fff; - } - - .button.is-primary:focus, .button.is-primary.is-focused { - border-color: transparent; - color: #fff; - } - - .button.is-primary:focus:not(:active), .button.is-primary.is-focused:not(:active) { - -webkit-box-shadow: 0 0 0 0.125em rgba(160, 9, 117, 0.25); - box-shadow: 0 0 0 0.125em rgba(160, 9, 117, 0.25); - } - - .button.is-primary:active, .button.is-primary.is-active, .is-primary.active { - background-color: #880863; - border-color: transparent; - color: #fff; - } - - .button.is-primary[disabled], fieldset[disabled] .button.is-primary { - background-color: #A00975; - border-color: transparent; - -webkit-box-shadow: none; - box-shadow: none; - } - - .button.is-primary.is-inverted { - background-color: #fff; - color: #A00975; - } - - .button.is-primary.is-inverted:hover, .button.is-primary.is-inverted.is-hovered { - background-color: #f2f2f2; - } - - .button.is-primary.is-inverted[disabled], fieldset[disabled] .button.is-primary.is-inverted { - background-color: #fff; - border-color: transparent; - -webkit-box-shadow: none; - box-shadow: none; - color: #A00975; - } - - .button.is-primary.is-loading::after { - border-color: transparent transparent #fff #fff !important; - } - - .button.is-primary.is-outlined { - background-color: transparent; - border-color: #A00975; - color: #A00975; - } - - .button.is-primary.is-outlined:hover, .button.is-primary.is-outlined.is-hovered, .button.is-primary.is-outlined:focus, .button.is-primary.is-outlined.is-focused { - background-color: #A00975; - border-color: #A00975; - color: #fff; - } - - .button.is-primary.is-outlined.is-loading::after { - border-color: transparent transparent #A00975 #A00975 !important; - } - - .button.is-primary.is-outlined.is-loading:hover::after, .button.is-primary.is-outlined.is-loading.is-hovered::after, .button.is-primary.is-outlined.is-loading:focus::after, .button.is-primary.is-outlined.is-loading.is-focused::after { - border-color: transparent transparent #fff #fff !important; - } - - .button.is-primary.is-outlined[disabled], fieldset[disabled] .button.is-primary.is-outlined { - background-color: transparent; - border-color: #A00975; - -webkit-box-shadow: none; - box-shadow: none; - color: #A00975; - } - - .button.is-primary.is-inverted.is-outlined { - background-color: transparent; - border-color: #fff; - color: #fff; - } - - .button.is-primary.is-inverted.is-outlined:hover, .button.is-primary.is-inverted.is-outlined.is-hovered, .button.is-primary.is-inverted.is-outlined:focus, .button.is-primary.is-inverted.is-outlined.is-focused { - background-color: #fff; - color: #A00975; - } - - .button.is-primary.is-inverted.is-outlined.is-loading:hover::after, .button.is-primary.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-primary.is-inverted.is-outlined.is-loading:focus::after, .button.is-primary.is-inverted.is-outlined.is-loading.is-focused::after { - border-color: transparent transparent #A00975 #A00975 !important; - } - - .button.is-primary.is-inverted.is-outlined[disabled], fieldset[disabled] .button.is-primary.is-inverted.is-outlined { - background-color: transparent; - border-color: #fff; - -webkit-box-shadow: none; - box-shadow: none; - color: #fff; - } - - .button.is-primary.is-light { - background-color: #feecf9; - color: #f212b2; - } - - .button.is-primary.is-light:hover, .button.is-primary.is-light.is-hovered { - background-color: #fde0f5; - border-color: transparent; - color: #f212b2; - } - - .button.is-primary.is-light:active, .button.is-primary.is-light.is-active, .is-light.active { - background-color: #fdd4f1; - border-color: transparent; - color: #f212b2; - } - - .button.is-link { - background-color: #378BBA; - border-color: transparent; - color: #fff; - } - - .button.is-link:hover, .button.is-link.is-hovered { - background-color: #3484b0; - border-color: transparent; - color: #fff; - } - - .button.is-link:focus, .button.is-link.is-focused { - border-color: transparent; - color: #fff; - } - - .button.is-link:focus:not(:active), .button.is-link.is-focused:not(:active) { - -webkit-box-shadow: 0 0 0 0.125em rgba(55, 139, 186, 0.25); - box-shadow: 0 0 0 0.125em rgba(55, 139, 186, 0.25); - } - - .button.is-link:active, .button.is-link.is-active, .is-link.active { - background-color: #317ca6; - border-color: transparent; - color: #fff; - } - - .button.is-link[disabled], fieldset[disabled] .button.is-link { - background-color: #378BBA; - border-color: transparent; - -webkit-box-shadow: none; - box-shadow: none; - } - - .button.is-link.is-inverted { - background-color: #fff; - color: #378BBA; - } - - .button.is-link.is-inverted:hover, .button.is-link.is-inverted.is-hovered { - background-color: #f2f2f2; - } - - .button.is-link.is-inverted[disabled], fieldset[disabled] .button.is-link.is-inverted { - background-color: #fff; - border-color: transparent; - -webkit-box-shadow: none; - box-shadow: none; - color: #378BBA; - } - - .button.is-link.is-loading::after { - border-color: transparent transparent #fff #fff !important; - } - - .button.is-link.is-outlined { - background-color: transparent; - border-color: #378BBA; - color: #378BBA; - } - - .button.is-link.is-outlined:hover, .button.is-link.is-outlined.is-hovered, .button.is-link.is-outlined:focus, .button.is-link.is-outlined.is-focused { - background-color: #378BBA; - border-color: #378BBA; - color: #fff; - } - - .button.is-link.is-outlined.is-loading::after { - border-color: transparent transparent #378BBA #378BBA !important; - } - - .button.is-link.is-outlined.is-loading:hover::after, .button.is-link.is-outlined.is-loading.is-hovered::after, .button.is-link.is-outlined.is-loading:focus::after, .button.is-link.is-outlined.is-loading.is-focused::after { - border-color: transparent transparent #fff #fff !important; - } - - .button.is-link.is-outlined[disabled], fieldset[disabled] .button.is-link.is-outlined { - background-color: transparent; - border-color: #378BBA; - -webkit-box-shadow: none; - box-shadow: none; - color: #378BBA; - } - - .button.is-link.is-inverted.is-outlined { - background-color: transparent; - border-color: #fff; - color: #fff; - } - - .button.is-link.is-inverted.is-outlined:hover, .button.is-link.is-inverted.is-outlined.is-hovered, .button.is-link.is-inverted.is-outlined:focus, .button.is-link.is-inverted.is-outlined.is-focused { - background-color: #fff; - color: #378BBA; - } - - .button.is-link.is-inverted.is-outlined.is-loading:hover::after, .button.is-link.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-link.is-inverted.is-outlined.is-loading:focus::after, .button.is-link.is-inverted.is-outlined.is-loading.is-focused::after { - border-color: transparent transparent #378BBA #378BBA !important; - } - - .button.is-link.is-inverted.is-outlined[disabled], fieldset[disabled] .button.is-link.is-inverted.is-outlined { - background-color: transparent; - border-color: #fff; - -webkit-box-shadow: none; - box-shadow: none; - color: #fff; - } - - .button.is-link.is-light { - background-color: #eff6fa; - color: #317ca5; - } - - .button.is-link.is-light:hover, .button.is-link.is-light.is-hovered { - background-color: #e5f1f7; - border-color: transparent; - color: #317ca5; - } - - .button.is-link.is-light:active, .button.is-link.is-light.is-active, .is-light.active { - background-color: #dcecf5; - border-color: transparent; - color: #317ca5; - } - - .button.is-info { - background-color: #3298dc; - border-color: transparent; - color: #fff; - } - - .button.is-info:hover, .button.is-info.is-hovered { - background-color: #2793da; - border-color: transparent; - color: #fff; - } - - .button.is-info:focus, .button.is-info.is-focused { - border-color: transparent; - color: #fff; - } - - .button.is-info:focus:not(:active), .button.is-info.is-focused:not(:active) { - -webkit-box-shadow: 0 0 0 0.125em rgba(50, 152, 220, 0.25); - box-shadow: 0 0 0 0.125em rgba(50, 152, 220, 0.25); - } - - .button.is-info:active, .button.is-info.is-active, .is-info.active { - background-color: #238cd1; - border-color: transparent; - color: #fff; - } - - .button.is-info[disabled], fieldset[disabled] .button.is-info { - background-color: #3298dc; - border-color: transparent; - -webkit-box-shadow: none; - box-shadow: none; - } - - .button.is-info.is-inverted { - background-color: #fff; - color: #3298dc; - } - - .button.is-info.is-inverted:hover, .button.is-info.is-inverted.is-hovered { - background-color: #f2f2f2; - } - - .button.is-info.is-inverted[disabled], fieldset[disabled] .button.is-info.is-inverted { - background-color: #fff; - border-color: transparent; - -webkit-box-shadow: none; - box-shadow: none; - color: #3298dc; - } - - .button.is-info.is-loading::after { - border-color: transparent transparent #fff #fff !important; - } - - .button.is-info.is-outlined { - background-color: transparent; - border-color: #3298dc; - color: #3298dc; - } - - .button.is-info.is-outlined:hover, .button.is-info.is-outlined.is-hovered, .button.is-info.is-outlined:focus, .button.is-info.is-outlined.is-focused { - background-color: #3298dc; - border-color: #3298dc; - color: #fff; - } - - .button.is-info.is-outlined.is-loading::after { - border-color: transparent transparent #3298dc #3298dc !important; - } - - .button.is-info.is-outlined.is-loading:hover::after, .button.is-info.is-outlined.is-loading.is-hovered::after, .button.is-info.is-outlined.is-loading:focus::after, .button.is-info.is-outlined.is-loading.is-focused::after { - border-color: transparent transparent #fff #fff !important; - } - - .button.is-info.is-outlined[disabled], fieldset[disabled] .button.is-info.is-outlined { - background-color: transparent; - border-color: #3298dc; - -webkit-box-shadow: none; - box-shadow: none; - color: #3298dc; - } - - .button.is-info.is-inverted.is-outlined { - background-color: transparent; - border-color: #fff; - color: #fff; - } - - .button.is-info.is-inverted.is-outlined:hover, .button.is-info.is-inverted.is-outlined.is-hovered, .button.is-info.is-inverted.is-outlined:focus, .button.is-info.is-inverted.is-outlined.is-focused { - background-color: #fff; - color: #3298dc; - } - - .button.is-info.is-inverted.is-outlined.is-loading:hover::after, .button.is-info.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-info.is-inverted.is-outlined.is-loading:focus::after, .button.is-info.is-inverted.is-outlined.is-loading.is-focused::after { - border-color: transparent transparent #3298dc #3298dc !important; - } - - .button.is-info.is-inverted.is-outlined[disabled], fieldset[disabled] .button.is-info.is-inverted.is-outlined { - background-color: transparent; - border-color: #fff; - -webkit-box-shadow: none; - box-shadow: none; - color: #fff; - } - - .button.is-info.is-light { - background-color: #eef6fc; - color: #1d72aa; - } - - .button.is-info.is-light:hover, .button.is-info.is-light.is-hovered { - background-color: #e3f1fa; - border-color: transparent; - color: #1d72aa; - } - - .button.is-info.is-light:active, .button.is-info.is-light.is-active, .is-light.active { - background-color: #d8ebf8; - border-color: transparent; - color: #1d72aa; - } - - .button.is-success { - background-color: #48c774; - border-color: transparent; - color: #fff; - } - - .button.is-success:hover, .button.is-success.is-hovered { - background-color: #3ec46d; - border-color: transparent; - color: #fff; - } - - .button.is-success:focus, .button.is-success.is-focused { - border-color: transparent; - color: #fff; - } - - .button.is-success:focus:not(:active), .button.is-success.is-focused:not(:active) { - -webkit-box-shadow: 0 0 0 0.125em rgba(72, 199, 116, 0.25); - box-shadow: 0 0 0 0.125em rgba(72, 199, 116, 0.25); - } - - .button.is-success:active, .button.is-success.is-active, .is-success.active { - background-color: #3abb67; - border-color: transparent; - color: #fff; - } - - .button.is-success[disabled], fieldset[disabled] .button.is-success { - background-color: #48c774; - border-color: transparent; - -webkit-box-shadow: none; - box-shadow: none; - } - - .button.is-success.is-inverted { - background-color: #fff; - color: #48c774; - } - - .button.is-success.is-inverted:hover, .button.is-success.is-inverted.is-hovered { - background-color: #f2f2f2; - } - - .button.is-success.is-inverted[disabled], fieldset[disabled] .button.is-success.is-inverted { - background-color: #fff; - border-color: transparent; - -webkit-box-shadow: none; - box-shadow: none; - color: #48c774; - } - - .button.is-success.is-loading::after { - border-color: transparent transparent #fff #fff !important; - } - - .button.is-success.is-outlined { - background-color: transparent; - border-color: #48c774; - color: #48c774; - } - - .button.is-success.is-outlined:hover, .button.is-success.is-outlined.is-hovered, .button.is-success.is-outlined:focus, .button.is-success.is-outlined.is-focused { - background-color: #48c774; - border-color: #48c774; - color: #fff; - } - - .button.is-success.is-outlined.is-loading::after { - border-color: transparent transparent #48c774 #48c774 !important; - } - - .button.is-success.is-outlined.is-loading:hover::after, .button.is-success.is-outlined.is-loading.is-hovered::after, .button.is-success.is-outlined.is-loading:focus::after, .button.is-success.is-outlined.is-loading.is-focused::after { - border-color: transparent transparent #fff #fff !important; - } - - .button.is-success.is-outlined[disabled], fieldset[disabled] .button.is-success.is-outlined { - background-color: transparent; - border-color: #48c774; - -webkit-box-shadow: none; - box-shadow: none; - color: #48c774; - } - - .button.is-success.is-inverted.is-outlined { - background-color: transparent; - border-color: #fff; - color: #fff; - } - - .button.is-success.is-inverted.is-outlined:hover, .button.is-success.is-inverted.is-outlined.is-hovered, .button.is-success.is-inverted.is-outlined:focus, .button.is-success.is-inverted.is-outlined.is-focused { - background-color: #fff; - color: #48c774; - } - - .button.is-success.is-inverted.is-outlined.is-loading:hover::after, .button.is-success.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-success.is-inverted.is-outlined.is-loading:focus::after, .button.is-success.is-inverted.is-outlined.is-loading.is-focused::after { - border-color: transparent transparent #48c774 #48c774 !important; - } - - .button.is-success.is-inverted.is-outlined[disabled], fieldset[disabled] .button.is-success.is-inverted.is-outlined { - background-color: transparent; - border-color: #fff; - -webkit-box-shadow: none; - box-shadow: none; - color: #fff; - } - - .button.is-success.is-light { - background-color: #effaf3; - color: #257942; - } - - .button.is-success.is-light:hover, .button.is-success.is-light.is-hovered { - background-color: #e6f7ec; - border-color: transparent; - color: #257942; - } - - .button.is-success.is-light:active, .button.is-success.is-light.is-active, .is-light.active { - background-color: #dcf4e4; - border-color: transparent; - color: #257942; - } - - .button.is-warning { - background-color: #ffdd57; - border-color: transparent; - color: rgba(0, 0, 0, 0.7); - } - - .button.is-warning:hover, .button.is-warning.is-hovered { - background-color: #ffdb4a; - border-color: transparent; - color: rgba(0, 0, 0, 0.7); - } - - .button.is-warning:focus, .button.is-warning.is-focused { - border-color: transparent; - color: rgba(0, 0, 0, 0.7); - } - - .button.is-warning:focus:not(:active), .button.is-warning.is-focused:not(:active) { - -webkit-box-shadow: 0 0 0 0.125em rgba(255, 221, 87, 0.25); - box-shadow: 0 0 0 0.125em rgba(255, 221, 87, 0.25); - } - - .button.is-warning:active, .button.is-warning.is-active, .is-warning.active { - background-color: #ffd83d; - border-color: transparent; - color: rgba(0, 0, 0, 0.7); - } - - .button.is-warning[disabled], fieldset[disabled] .button.is-warning { - background-color: #ffdd57; - border-color: transparent; - -webkit-box-shadow: none; - box-shadow: none; - } - - .button.is-warning.is-inverted { - background-color: rgba(0, 0, 0, 0.7); - color: #ffdd57; - } - - .button.is-warning.is-inverted:hover, .button.is-warning.is-inverted.is-hovered { - background-color: rgba(0, 0, 0, 0.7); - } - - .button.is-warning.is-inverted[disabled], fieldset[disabled] .button.is-warning.is-inverted { - background-color: rgba(0, 0, 0, 0.7); - border-color: transparent; - -webkit-box-shadow: none; - box-shadow: none; - color: #ffdd57; - } - - .button.is-warning.is-loading::after { - border-color: transparent transparent rgba(0, 0, 0, 0.7) rgba(0, 0, 0, 0.7) !important; - } - - .button.is-warning.is-outlined { - background-color: transparent; - border-color: #ffdd57; - color: #ffdd57; - } - - .button.is-warning.is-outlined:hover, .button.is-warning.is-outlined.is-hovered, .button.is-warning.is-outlined:focus, .button.is-warning.is-outlined.is-focused { - background-color: #ffdd57; - border-color: #ffdd57; - color: rgba(0, 0, 0, 0.7); - } - - .button.is-warning.is-outlined.is-loading::after { - border-color: transparent transparent #ffdd57 #ffdd57 !important; - } - - .button.is-warning.is-outlined.is-loading:hover::after, .button.is-warning.is-outlined.is-loading.is-hovered::after, .button.is-warning.is-outlined.is-loading:focus::after, .button.is-warning.is-outlined.is-loading.is-focused::after { - border-color: transparent transparent rgba(0, 0, 0, 0.7) rgba(0, 0, 0, 0.7) !important; - } - - .button.is-warning.is-outlined[disabled], fieldset[disabled] .button.is-warning.is-outlined { - background-color: transparent; - border-color: #ffdd57; - -webkit-box-shadow: none; - box-shadow: none; - color: #ffdd57; - } - - .button.is-warning.is-inverted.is-outlined { - background-color: transparent; - border-color: rgba(0, 0, 0, 0.7); - color: rgba(0, 0, 0, 0.7); - } - - .button.is-warning.is-inverted.is-outlined:hover, .button.is-warning.is-inverted.is-outlined.is-hovered, .button.is-warning.is-inverted.is-outlined:focus, .button.is-warning.is-inverted.is-outlined.is-focused { - background-color: rgba(0, 0, 0, 0.7); - color: #ffdd57; - } - - .button.is-warning.is-inverted.is-outlined.is-loading:hover::after, .button.is-warning.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-warning.is-inverted.is-outlined.is-loading:focus::after, .button.is-warning.is-inverted.is-outlined.is-loading.is-focused::after { - border-color: transparent transparent #ffdd57 #ffdd57 !important; - } - - .button.is-warning.is-inverted.is-outlined[disabled], fieldset[disabled] .button.is-warning.is-inverted.is-outlined { - background-color: transparent; - border-color: rgba(0, 0, 0, 0.7); - -webkit-box-shadow: none; - box-shadow: none; - color: rgba(0, 0, 0, 0.7); - } - - .button.is-warning.is-light { - background-color: #fffbeb; - color: #947600; - } - - .button.is-warning.is-light:hover, .button.is-warning.is-light.is-hovered { - background-color: #fff8de; - border-color: transparent; - color: #947600; - } - - .button.is-warning.is-light:active, .button.is-warning.is-light.is-active, .is-light.active { - background-color: #fff6d1; - border-color: transparent; - color: #947600; - } - - .button.is-danger { - background-color: #f14668; - border-color: transparent; - color: #fff; - } - - .button.is-danger:hover, .button.is-danger.is-hovered { - background-color: #f03a5f; - border-color: transparent; - color: #fff; - } - - .button.is-danger:focus, .button.is-danger.is-focused { - border-color: transparent; - color: #fff; - } - - .button.is-danger:focus:not(:active), .button.is-danger.is-focused:not(:active) { - -webkit-box-shadow: 0 0 0 0.125em rgba(241, 70, 104, 0.25); - box-shadow: 0 0 0 0.125em rgba(241, 70, 104, 0.25); - } - - .button.is-danger:active, .button.is-danger.is-active, .is-danger.active { - background-color: #ef2e55; - border-color: transparent; - color: #fff; - } - - .button.is-danger[disabled], fieldset[disabled] .button.is-danger { - background-color: #f14668; - border-color: transparent; - -webkit-box-shadow: none; - box-shadow: none; - } - - .button.is-danger.is-inverted { - background-color: #fff; - color: #f14668; - } - - .button.is-danger.is-inverted:hover, .button.is-danger.is-inverted.is-hovered { - background-color: #f2f2f2; - } - - .button.is-danger.is-inverted[disabled], fieldset[disabled] .button.is-danger.is-inverted { - background-color: #fff; - border-color: transparent; - -webkit-box-shadow: none; - box-shadow: none; - color: #f14668; - } - - .button.is-danger.is-loading::after { - border-color: transparent transparent #fff #fff !important; - } - - .button.is-danger.is-outlined { - background-color: transparent; - border-color: #f14668; - color: #f14668; - } - - .button.is-danger.is-outlined:hover, .button.is-danger.is-outlined.is-hovered, .button.is-danger.is-outlined:focus, .button.is-danger.is-outlined.is-focused { - background-color: #f14668; - border-color: #f14668; - color: #fff; - } - - .button.is-danger.is-outlined.is-loading::after { - border-color: transparent transparent #f14668 #f14668 !important; - } - - .button.is-danger.is-outlined.is-loading:hover::after, .button.is-danger.is-outlined.is-loading.is-hovered::after, .button.is-danger.is-outlined.is-loading:focus::after, .button.is-danger.is-outlined.is-loading.is-focused::after { - border-color: transparent transparent #fff #fff !important; - } - - .button.is-danger.is-outlined[disabled], fieldset[disabled] .button.is-danger.is-outlined { - background-color: transparent; - border-color: #f14668; - -webkit-box-shadow: none; - box-shadow: none; - color: #f14668; - } - - .button.is-danger.is-inverted.is-outlined { - background-color: transparent; - border-color: #fff; - color: #fff; - } - - .button.is-danger.is-inverted.is-outlined:hover, .button.is-danger.is-inverted.is-outlined.is-hovered, .button.is-danger.is-inverted.is-outlined:focus, .button.is-danger.is-inverted.is-outlined.is-focused { - background-color: #fff; - color: #f14668; - } - - .button.is-danger.is-inverted.is-outlined.is-loading:hover::after, .button.is-danger.is-inverted.is-outlined.is-loading.is-hovered::after, .button.is-danger.is-inverted.is-outlined.is-loading:focus::after, .button.is-danger.is-inverted.is-outlined.is-loading.is-focused::after { - border-color: transparent transparent #f14668 #f14668 !important; - } - - .button.is-danger.is-inverted.is-outlined[disabled], fieldset[disabled] .button.is-danger.is-inverted.is-outlined { - background-color: transparent; - border-color: #fff; - -webkit-box-shadow: none; - box-shadow: none; - color: #fff; - } - - .button.is-danger.is-light { - background-color: #feecf0; - color: #cc0f35; - } - - .button.is-danger.is-light:hover, .button.is-danger.is-light.is-hovered { - background-color: #fde0e6; - border-color: transparent; - color: #cc0f35; - } - - .button.is-danger.is-light:active, .button.is-danger.is-light.is-active, .is-light.active { - background-color: #fcd4dc; - border-color: transparent; - color: #cc0f35; - } - - .button.is-small { - font-size: 0.75rem; - } - - .button.is-small:not(.is-rounded) { - border-radius: 2px; - } - - .button.is-normal { - font-size: 1rem; - } - - .button.is-medium { - font-size: 1.25rem; - } - - .button.is-large { - font-size: 1.5rem; - } - - .button[disabled], fieldset[disabled] .button { - background-color: white; - border-color: #dbdbdb; - -webkit-box-shadow: none; - box-shadow: none; - opacity: 0.5; - } - - .button.is-fullwidth { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - width: 100%; - } - - .button.is-loading { - color: transparent !important; - pointer-events: none; - } - - .button.is-loading::after { - position: absolute; - left: calc(50% - (1em / 2)); - top: calc(50% - (1em / 2)); - position: absolute !important; - } - - .button.is-static { - background-color: whitesmoke; - border-color: #dbdbdb; - color: #7a7a7a; - -webkit-box-shadow: none; - box-shadow: none; - pointer-events: none; - } - - .button.is-rounded { - border-radius: 290486px; - padding-left: calc(1em + 0.25em); - padding-right: calc(1em + 0.25em); - } - -.buttons { - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - -webkit-box-pack: start; - -ms-flex-pack: start; - justify-content: flex-start; -} - - .buttons .button { - margin-bottom: 0.5rem; - } - - .buttons .button:not(:last-child):not(.is-fullwidth) { - margin-right: 0.5rem; - } - - .buttons:last-child { - margin-bottom: -0.5rem; - } - - .buttons:not(:last-child) { - margin-bottom: 1rem; - } - - .buttons.are-small .button:not(.is-normal):not(.is-medium):not(.is-large) { - font-size: 0.75rem; - } - - .buttons.are-small .button:not(.is-normal):not(.is-medium):not(.is-large):not(.is-rounded) { - border-radius: 2px; - } - - .buttons.are-medium .button:not(.is-small):not(.is-normal):not(.is-large) { - font-size: 1.25rem; - } - - .buttons.are-large .button:not(.is-small):not(.is-normal):not(.is-medium) { - font-size: 1.5rem; - } - - .buttons.has-addons .button:not(:first-child) { - border-bottom-left-radius: 0; - border-top-left-radius: 0; - } - - .buttons.has-addons .button:not(:last-child) { - border-bottom-right-radius: 0; - border-top-right-radius: 0; - margin-right: -1px; - } - - .buttons.has-addons .button:last-child { - margin-right: 0; - } - - .buttons.has-addons .button:hover, .buttons.has-addons .button.is-hovered { - z-index: 2; - } - - .buttons.has-addons .button:focus, .buttons.has-addons .button.is-focused, .buttons.has-addons .button:active, .buttons.has-addons .button.is-active, .buttons.has-addons .button.active, .buttons.has-addons .button.is-selected { - z-index: 3; - } - - .buttons.has-addons .button:focus:hover, .buttons.has-addons .button.is-focused:hover, .buttons.has-addons .button:active:hover, .buttons.has-addons .button.is-active:hover, .buttons.has-addons .button.active:hover, .buttons.has-addons .button.is-selected:hover { - z-index: 4; - } - - .buttons.has-addons .button.is-expanded { - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - -ms-flex-negative: 1; - flex-shrink: 1; - } - - .buttons.is-centered { - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - } - - .buttons.is-centered:not(.has-addons) .button:not(.is-fullwidth) { - margin-left: 0.25rem; - margin-right: 0.25rem; - } - - .buttons.is-right { - -webkit-box-pack: end; - -ms-flex-pack: end; - justify-content: flex-end; - } - - .buttons.is-right:not(.has-addons) .button:not(.is-fullwidth) { - margin-left: 0.25rem; - margin-right: 0.25rem; - } - -.container { - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - margin: 0 auto; - position: relative; - width: auto; -} - - .container.is-fluid { - max-width: none !important; - padding-left: 32px; - padding-right: 32px; - width: 100%; - } - -@media screen and (min-width: 1024px) { - .container { - max-width: 960px; - } -} - -@media screen and (max-width: 1215px) { - .container.is-widescreen:not(.is-max-desktop) { - max-width: 1152px; - } -} - -@media screen and (max-width: 1407px) { - .container.is-fullhd:not(.is-max-desktop):not(.is-max-widescreen) { - max-width: 1344px; - } -} - -@media screen and (min-width: 1216px) { - .container:not(.is-max-desktop) { - max-width: 1152px; - } -} - -@media screen and (min-width: 1408px) { - .container:not(.is-max-desktop):not(.is-max-widescreen) { - max-width: 1344px; - } -} - -.content li + li { - margin-top: 0.25em; -} - -.content p:not(:last-child), -.content dl:not(:last-child), -.content ol:not(:last-child), -.content ul:not(:last-child), -.content blockquote:not(:last-child), -.content pre:not(:last-child), -.content table:not(:last-child) { - margin-bottom: 1em; -} - -.content h1, -.content h2, -.content h3, -.content h4, -.content h5, -.content h6 { - color: #363636; - font-weight: 600; - line-height: 1.125; -} - -.content h1 { - font-size: 2em; - margin-bottom: 0.5em; -} - - .content h1:not(:first-child) { - margin-top: 1em; - } - -.content h2 { - font-size: 1.75em; - margin-bottom: 0.5714em; -} - - .content h2:not(:first-child) { - margin-top: 1.1428em; - } - -.content h3 { - font-size: 1.5em; - margin-bottom: 0.6666em; -} - - .content h3:not(:first-child) { - margin-top: 1.3333em; - } - -.content h4 { - font-size: 1.25em; - margin-bottom: 0.8em; -} - -.content h5 { - font-size: 1.125em; - margin-bottom: 0.8888em; -} - -.content h6 { - font-size: 1em; - margin-bottom: 1em; -} - -.content blockquote { - background-color: whitesmoke; - border-left: 5px solid #dbdbdb; - padding: 1.25em 1.5em; -} - -.content ol { - list-style-position: outside; - margin-left: 2em; - margin-top: 1em; -} - - .content ol:not([type]) { - list-style-type: decimal; - } - - .content ol:not([type]).is-lower-alpha { - list-style-type: lower-alpha; - } - - .content ol:not([type]).is-lower-roman { - list-style-type: lower-roman; - } - - .content ol:not([type]).is-upper-alpha { - list-style-type: upper-alpha; - } - - .content ol:not([type]).is-upper-roman { - list-style-type: upper-roman; - } - -.content ul { - list-style: disc outside; - margin-left: 2em; - margin-top: 1em; -} - - .content ul ul { - list-style-type: circle; - margin-top: 0.5em; - } - - .content ul ul ul { - list-style-type: square; - } - -.content dd { - margin-left: 2em; -} - -.content figure { - margin-left: 2em; - margin-right: 2em; - text-align: center; -} - - .content figure:not(:first-child) { - margin-top: 2em; - } - - .content figure:not(:last-child) { - margin-bottom: 2em; - } - - .content figure img { - display: inline-block; - } - - .content figure figcaption { - font-style: italic; - } - -.content pre { - -webkit-overflow-scrolling: touch; - overflow-x: auto; - padding: 1.25em 1.5em; - white-space: pre; - word-wrap: normal; -} - -.content sup, -.content sub { - font-size: 75%; -} - -.content table { - width: 100%; -} - - .content table td, - .content table th { - border: 1px solid #dbdbdb; - border-width: 0 0 1px; - padding: 0.5em 0.75em; - vertical-align: top; - } - - .content table th { - color: #363636; - } - - .content table th:not([align]) { - text-align: inherit; - } - - .content table thead td, - .content table thead th { - border-width: 0 0 2px; - color: #363636; - } - - .content table tfoot td, - .content table tfoot th { - border-width: 2px 0 0; - color: #363636; - } - - .content table tbody tr:last-child td, - .content table tbody tr:last-child th { - border-bottom-width: 0; - } - -.content .tabs li + li { - margin-top: 0; -} - -.content.is-small { - font-size: 0.75rem; -} - -.content.is-medium { - font-size: 1.25rem; -} - -.content.is-large { - font-size: 1.5rem; -} - -.icon { - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - display: -webkit-inline-box; - display: -ms-inline-flexbox; - display: inline-flex; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - height: 1.5rem; - width: 1.5rem; -} - - .icon.is-small { - height: 1rem; - width: 1rem; - } - - .icon.is-medium { - height: 2rem; - width: 2rem; - } - - .icon.is-large { - height: 3rem; - width: 3rem; - } - -.icon-text { - -webkit-box-align: start; - -ms-flex-align: start; - align-items: flex-start; - color: inherit; - display: -webkit-inline-box; - display: -ms-inline-flexbox; - display: inline-flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - line-height: 1.5rem; - vertical-align: top; -} - - .icon-text .icon { - -webkit-box-flex: 0; - -ms-flex-positive: 0; - flex-grow: 0; - -ms-flex-negative: 0; - flex-shrink: 0; - } - - .icon-text .icon:not(:last-child) { - margin-right: 0.25em; - } - - .icon-text .icon:not(:first-child) { - margin-left: 0.25em; - } - -div.icon-text { - display: -webkit-box; - display: -ms-flexbox; - display: flex; -} - -.image { - display: block; - position: relative; -} - - .image img { - display: block; - height: auto; - width: 100%; - } - - .image img.is-rounded { - border-radius: 290486px; - } - - .image.is-fullwidth { - width: 100%; - } - - .image.is-square img, - .image.is-square .has-ratio, .image.is-1by1 img, - .image.is-1by1 .has-ratio, .image.is-5by4 img, - .image.is-5by4 .has-ratio, .image.is-4by3 img, - .image.is-4by3 .has-ratio, .image.is-3by2 img, - .image.is-3by2 .has-ratio, .image.is-5by3 img, - .image.is-5by3 .has-ratio, .image.is-16by9 img, - .image.is-16by9 .has-ratio, .image.is-2by1 img, - .image.is-2by1 .has-ratio, .image.is-3by1 img, - .image.is-3by1 .has-ratio, .image.is-4by5 img, - .image.is-4by5 .has-ratio, .image.is-3by4 img, - .image.is-3by4 .has-ratio, .image.is-2by3 img, - .image.is-2by3 .has-ratio, .image.is-3by5 img, - .image.is-3by5 .has-ratio, .image.is-9by16 img, - .image.is-9by16 .has-ratio, .image.is-1by2 img, - .image.is-1by2 .has-ratio, .image.is-1by3 img, - .image.is-1by3 .has-ratio { - height: 100%; - width: 100%; - } - - .image.is-square, .image.is-1by1 { - padding-top: 100%; - } - - .image.is-5by4 { - padding-top: 80%; - } - - .image.is-4by3 { - padding-top: 75%; - } - - .image.is-3by2 { - padding-top: 66.6666%; - } - - .image.is-5by3 { - padding-top: 60%; - } - - .image.is-16by9 { - padding-top: 56.25%; - } - - .image.is-2by1 { - padding-top: 50%; - } - - .image.is-3by1 { - padding-top: 33.3333%; - } - - .image.is-4by5 { - padding-top: 125%; - } - - .image.is-3by4 { - padding-top: 133.3333%; - } - - .image.is-2by3 { - padding-top: 150%; - } - - .image.is-3by5 { - padding-top: 166.6666%; - } - - .image.is-9by16 { - padding-top: 177.7777%; - } - - .image.is-1by2 { - padding-top: 200%; - } - - .image.is-1by3 { - padding-top: 300%; - } - - .image.is-16x16 { - height: 16px; - width: 16px; - } - - .image.is-24x24 { - height: 24px; - width: 24px; - } - - .image.is-32x32 { - height: 32px; - width: 32px; - } - - .image.is-48x48 { - height: 48px; - width: 48px; - } - - .image.is-64x64 { - height: 64px; - width: 64px; - } - - .image.is-96x96 { - height: 96px; - width: 96px; - } - - .image.is-128x128 { - height: 128px; - width: 128px; - } - -.notification { - background-color: whitesmoke; - border-radius: 4px; - position: relative; - padding: 1.25rem 2.5rem 1.25rem 1.5rem; -} - - .notification a:not(.button):not(.dropdown-item) { - color: currentColor; - text-decoration: underline; - } - - .notification strong { - color: currentColor; - } - - .notification code, - .notification pre { - background: white; - } - - .notification pre code { - background: transparent; - } - - .notification > .delete { - right: 0.5rem; - position: absolute; - top: 0.5rem; - } - - .notification .title, - .notification .subtitle, - .notification .content { - color: currentColor; - } - - .notification.is-white { - background-color: white; - color: #0a0a0a; - } - - .notification.is-black { - background-color: #0a0a0a; - color: white; - } - - .notification.is-light { - background-color: whitesmoke; - color: rgba(0, 0, 0, 0.7); - } - - .notification.is-dark { - background-color: #200117; - color: #fff; - } - - .notification.is-primary { - background-color: #A00975; - color: #fff; - } - - .notification.is-primary.is-light { - background-color: #feecf9; - color: #f212b2; - } - - .notification.is-link { - background-color: #378BBA; - color: #fff; - } - - .notification.is-link.is-light { - background-color: #eff6fa; - color: #317ca5; - } - - .notification.is-info { - background-color: #3298dc; - color: #fff; - } - - .notification.is-info.is-light { - background-color: #eef6fc; - color: #1d72aa; - } - - .notification.is-success { - background-color: #48c774; - color: #fff; - } - - .notification.is-success.is-light { - background-color: #effaf3; - color: #257942; - } - - .notification.is-warning { - background-color: #ffdd57; - color: rgba(0, 0, 0, 0.7); - } - - .notification.is-warning.is-light { - background-color: #fffbeb; - color: #947600; - } - - .notification.is-danger { - background-color: #f14668; - color: #fff; - } - - .notification.is-danger.is-light { - background-color: #feecf0; - color: #cc0f35; - } - -.progress { - -moz-appearance: none; - -webkit-appearance: none; - border: none; - border-radius: 290486px; - display: block; - height: 1rem; - overflow: hidden; - padding: 0; - width: 100%; -} - - .progress::-webkit-progress-bar { - background-color: #ededed; - } - - .progress::-webkit-progress-value { - background-color: #4a4a4a; - } - - .progress::-moz-progress-bar { - background-color: #4a4a4a; - } - - .progress::-ms-fill { - background-color: #4a4a4a; - border: none; - } - - .progress.is-white::-webkit-progress-value { - background-color: white; - } - - .progress.is-white::-moz-progress-bar { - background-color: white; - } - - .progress.is-white::-ms-fill { - background-color: white; - } - - .progress.is-white:indeterminate { - background-image: -webkit-gradient(linear, left top, right top, color-stop(30%, white), color-stop(30%, #ededed)); - background-image: -o-linear-gradient(left, white 30%, #ededed 30%); - background-image: linear-gradient(to right, white 30%, #ededed 30%); - } - - .progress.is-black::-webkit-progress-value { - background-color: #0a0a0a; - } - - .progress.is-black::-moz-progress-bar { - background-color: #0a0a0a; - } - - .progress.is-black::-ms-fill { - background-color: #0a0a0a; - } - - .progress.is-black:indeterminate { - background-image: -webkit-gradient(linear, left top, right top, color-stop(30%, #0a0a0a), color-stop(30%, #ededed)); - background-image: -o-linear-gradient(left, #0a0a0a 30%, #ededed 30%); - background-image: linear-gradient(to right, #0a0a0a 30%, #ededed 30%); - } - - .progress.is-light::-webkit-progress-value { - background-color: whitesmoke; - } - - .progress.is-light::-moz-progress-bar { - background-color: whitesmoke; - } - - .progress.is-light::-ms-fill { - background-color: whitesmoke; - } - - .progress.is-light:indeterminate { - background-image: -webkit-gradient(linear, left top, right top, color-stop(30%, whitesmoke), color-stop(30%, #ededed)); - background-image: -o-linear-gradient(left, whitesmoke 30%, #ededed 30%); - background-image: linear-gradient(to right, whitesmoke 30%, #ededed 30%); - } - - .progress.is-dark::-webkit-progress-value { - background-color: #200117; - } - - .progress.is-dark::-moz-progress-bar { - background-color: #200117; - } - - .progress.is-dark::-ms-fill { - background-color: #200117; - } - - .progress.is-dark:indeterminate { - background-image: -webkit-gradient(linear, left top, right top, color-stop(30%, #200117), color-stop(30%, #ededed)); - background-image: -o-linear-gradient(left, #200117 30%, #ededed 30%); - background-image: linear-gradient(to right, #200117 30%, #ededed 30%); - } - - .progress.is-primary::-webkit-progress-value { - background-color: #A00975; - } - - .progress.is-primary::-moz-progress-bar { - background-color: #A00975; - } - - .progress.is-primary::-ms-fill { - background-color: #A00975; - } - - .progress.is-primary:indeterminate { - background-image: -webkit-gradient(linear, left top, right top, color-stop(30%, #A00975), color-stop(30%, #ededed)); - background-image: -o-linear-gradient(left, #A00975 30%, #ededed 30%); - background-image: linear-gradient(to right, #A00975 30%, #ededed 30%); - } - - .progress.is-link::-webkit-progress-value { - background-color: #378BBA; - } - - .progress.is-link::-moz-progress-bar { - background-color: #378BBA; - } - - .progress.is-link::-ms-fill { - background-color: #378BBA; - } - - .progress.is-link:indeterminate { - background-image: -webkit-gradient(linear, left top, right top, color-stop(30%, #378BBA), color-stop(30%, #ededed)); - background-image: -o-linear-gradient(left, #378BBA 30%, #ededed 30%); - background-image: linear-gradient(to right, #378BBA 30%, #ededed 30%); - } - - .progress.is-info::-webkit-progress-value { - background-color: #3298dc; - } - - .progress.is-info::-moz-progress-bar { - background-color: #3298dc; - } - - .progress.is-info::-ms-fill { - background-color: #3298dc; - } - - .progress.is-info:indeterminate { - background-image: -webkit-gradient(linear, left top, right top, color-stop(30%, #3298dc), color-stop(30%, #ededed)); - background-image: -o-linear-gradient(left, #3298dc 30%, #ededed 30%); - background-image: linear-gradient(to right, #3298dc 30%, #ededed 30%); - } - - .progress.is-success::-webkit-progress-value { - background-color: #48c774; - } - - .progress.is-success::-moz-progress-bar { - background-color: #48c774; - } - - .progress.is-success::-ms-fill { - background-color: #48c774; - } - - .progress.is-success:indeterminate { - background-image: -webkit-gradient(linear, left top, right top, color-stop(30%, #48c774), color-stop(30%, #ededed)); - background-image: -o-linear-gradient(left, #48c774 30%, #ededed 30%); - background-image: linear-gradient(to right, #48c774 30%, #ededed 30%); - } - - .progress.is-warning::-webkit-progress-value { - background-color: #ffdd57; - } - - .progress.is-warning::-moz-progress-bar { - background-color: #ffdd57; - } - - .progress.is-warning::-ms-fill { - background-color: #ffdd57; - } - - .progress.is-warning:indeterminate { - background-image: -webkit-gradient(linear, left top, right top, color-stop(30%, #ffdd57), color-stop(30%, #ededed)); - background-image: -o-linear-gradient(left, #ffdd57 30%, #ededed 30%); - background-image: linear-gradient(to right, #ffdd57 30%, #ededed 30%); - } - - .progress.is-danger::-webkit-progress-value { - background-color: #f14668; - } - - .progress.is-danger::-moz-progress-bar { - background-color: #f14668; - } - - .progress.is-danger::-ms-fill { - background-color: #f14668; - } - - .progress.is-danger:indeterminate { - background-image: -webkit-gradient(linear, left top, right top, color-stop(30%, #f14668), color-stop(30%, #ededed)); - background-image: -o-linear-gradient(left, #f14668 30%, #ededed 30%); - background-image: linear-gradient(to right, #f14668 30%, #ededed 30%); - } - - .progress:indeterminate { - -webkit-animation-duration: 1.5s; - animation-duration: 1.5s; - -webkit-animation-iteration-count: infinite; - animation-iteration-count: infinite; - -webkit-animation-name: moveIndeterminate; - animation-name: moveIndeterminate; - -webkit-animation-timing-function: linear; - animation-timing-function: linear; - background-color: #ededed; - background-image: -webkit-gradient(linear, left top, right top, color-stop(30%, #4a4a4a), color-stop(30%, #ededed)); - background-image: -o-linear-gradient(left, #4a4a4a 30%, #ededed 30%); - background-image: linear-gradient(to right, #4a4a4a 30%, #ededed 30%); - background-position: top left; - background-repeat: no-repeat; - background-size: 150% 150%; - } - - .progress:indeterminate::-webkit-progress-bar { - background-color: transparent; - } - - .progress:indeterminate::-moz-progress-bar { - background-color: transparent; - } - - .progress:indeterminate::-ms-fill { - animation-name: none; - } - - .progress.is-small { - height: 0.75rem; - } - - .progress.is-medium { - height: 1.25rem; - } - - .progress.is-large { - height: 1.5rem; - } - -@-webkit-keyframes moveIndeterminate { - from { - background-position: 200% 0; - } - - to { - background-position: -200% 0; - } -} - -@keyframes moveIndeterminate { - from { - background-position: 200% 0; - } - - to { - background-position: -200% 0; - } -} - -.table, table { - background-color: white; - color: #363636; -} - - .table td, table td, - .table th, - table th { - border: 1px solid #200117; - border-width: 0 0 1px; - padding: 0.5em 0.75em; - vertical-align: top; - } - - .table td.is-white, table td.is-white, - .table th.is-white, - table th.is-white { - background-color: white; - border-color: white; - color: #0a0a0a; - } - - .table td.is-black, table td.is-black, - .table th.is-black, - table th.is-black { - background-color: #0a0a0a; - border-color: #0a0a0a; - color: white; - } - - .table td.is-light, table td.is-light, - .table th.is-light, - table th.is-light { - background-color: whitesmoke; - border-color: whitesmoke; - color: rgba(0, 0, 0, 0.7); - } - - .table td.is-dark, table td.is-dark, - .table th.is-dark, - table th.is-dark { - background-color: #200117; - border-color: #200117; - color: #fff; - } - - .table td.is-primary, table td.is-primary, - .table th.is-primary, - table th.is-primary { - background-color: #A00975; - border-color: #A00975; - color: #fff; - } - - .table td.is-link, table td.is-link, - .table th.is-link, - table th.is-link { - background-color: #378BBA; - border-color: #378BBA; - color: #fff; - } - - .table td.is-info, table td.is-info, - .table th.is-info, - table th.is-info { - background-color: #3298dc; - border-color: #3298dc; - color: #fff; - } - - .table td.is-success, table td.is-success, - .table th.is-success, - table th.is-success { - background-color: #48c774; - border-color: #48c774; - color: #fff; - } - - .table td.is-warning, table td.is-warning, - .table th.is-warning, - table th.is-warning { - background-color: #ffdd57; - border-color: #ffdd57; - color: rgba(0, 0, 0, 0.7); - } - - .table td.is-danger, table td.is-danger, - .table th.is-danger, - table th.is-danger { - background-color: #f14668; - border-color: #f14668; - color: #fff; - } - - .table td.is-narrow, table td.is-narrow, - .table th.is-narrow, - table th.is-narrow { - white-space: nowrap; - width: 1%; - } - - .table td.is-selected, table td.is-selected, - .table th.is-selected, - table th.is-selected { - background-color: #A00975; - color: #fff; - } - - .table td.is-selected a, table td.is-selected a, - .table td.is-selected strong, - table td.is-selected strong, - .table th.is-selected a, - table th.is-selected a, - .table th.is-selected strong, - table th.is-selected strong { - color: currentColor; - } - - .table td.is-vcentered, table td.is-vcentered, - .table th.is-vcentered, - table th.is-vcentered { - vertical-align: middle; - } - - .table th, table th { - color: #A00975; - } - - .table th:not([align]), table th:not([align]) { - text-align: inherit; - } - - .table tr.is-selected, table tr.is-selected { - background-color: #A00975; - color: #fff; - } - - .table tr.is-selected a, table tr.is-selected a, - .table tr.is-selected strong, - table tr.is-selected strong { - color: currentColor; - } - - .table tr.is-selected td, table tr.is-selected td, - .table tr.is-selected th, - table tr.is-selected th { - border-color: #fff; - color: currentColor; - } - - .table thead, table thead { - background-color: transparent; - } - - .table thead td, table thead td, - .table thead th, - table thead th { - border-width: 0 0 2px; - color: #A00975; - } - - .table tfoot, table tfoot { - background-color: transparent; - } - - .table tfoot td, table tfoot td, - .table tfoot th, - table tfoot th { - border-width: 2px 0 0; - color: #363636; - } - - .table tbody, table tbody { - background-color: transparent; - } - - .table tbody tr:last-child td, table tbody tr:last-child td, - .table tbody tr:last-child th, - table tbody tr:last-child th { - border-bottom-width: 0; - } - - .table.is-bordered td, table.is-bordered td, - .table.is-bordered th, - table.is-bordered th { - border-width: 1px; - } - - .table.is-bordered tr:last-child td, table.is-bordered tr:last-child td, - .table.is-bordered tr:last-child th, - table.is-bordered tr:last-child th { - border-bottom-width: 1px; - } - - .table.is-fullwidth, table.is-fullwidth { - width: 100%; - } - - .table.is-hoverable tbody tr:not(.is-selected):hover, table.is-hoverable tbody tr:not(.is-selected):hover { - background-color: #fafafa; - } - - .table.is-hoverable.is-striped tbody tr:not(.is-selected):hover, table.is-hoverable tbody tr:not(.is-selected):hover { - background-color: #fafafa; - } - - .table.is-hoverable.is-striped tbody tr:not(.is-selected):hover:nth-child(even), table.is-hoverable tbody tr:not(.is-selected):hover:nth-child(even) { - background-color: whitesmoke; - } - - .table.is-narrow td, table.is-narrow td, - .table.is-narrow th, - table.is-narrow th { - padding: 0.25em 0.5em; - } - - .table.is-striped tbody tr:not(.is-selected):nth-child(even), table tbody tr:not(.is-selected):nth-child(even) { - background-color: #fafafa; - } - -.table-container { - -webkit-overflow-scrolling: touch; - overflow: auto; - overflow-y: hidden; - max-width: 100%; -} - -.tags { - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - -webkit-box-pack: start; - -ms-flex-pack: start; - justify-content: flex-start; -} - - .tags .tag { - margin-bottom: 0.5rem; - } - - .tags .tag:not(:last-child) { - margin-right: 0.5rem; - } - - .tags:last-child { - margin-bottom: -0.5rem; - } - - .tags:not(:last-child) { - margin-bottom: 1rem; - } - - .tags.are-medium .tag:not(.is-normal):not(.is-large) { - font-size: 1rem; - } - - .tags.are-large .tag:not(.is-normal):not(.is-medium) { - font-size: 1.25rem; - } - - .tags.is-centered { - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - } - - .tags.is-centered .tag { - margin-right: 0.25rem; - margin-left: 0.25rem; - } - - .tags.is-right { - -webkit-box-pack: end; - -ms-flex-pack: end; - justify-content: flex-end; - } - - .tags.is-right .tag:not(:first-child) { - margin-left: 0.5rem; - } - - .tags.is-right .tag:not(:last-child) { - margin-right: 0; - } - - .tags.has-addons .tag { - margin-right: 0; - } - - .tags.has-addons .tag:not(:first-child) { - margin-left: 0; - border-top-left-radius: 0; - border-bottom-left-radius: 0; - } - - .tags.has-addons .tag:not(:last-child) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; - } - -.tag:not(body) { - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - background-color: whitesmoke; - border-radius: 4px; - color: #4a4a4a; - display: -webkit-inline-box; - display: -ms-inline-flexbox; - display: inline-flex; - font-size: 0.75rem; - height: 2em; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - line-height: 1.5; - padding-left: 0.75em; - padding-right: 0.75em; - white-space: nowrap; -} - - .tag:not(body) .delete { - margin-left: 0.25rem; - margin-right: -0.375rem; - } - - .tag:not(body).is-white { - background-color: white; - color: #0a0a0a; - } - - .tag:not(body).is-black { - background-color: #0a0a0a; - color: white; - } - - .tag:not(body).is-light { - background-color: whitesmoke; - color: rgba(0, 0, 0, 0.7); - } - - .tag:not(body).is-dark { - background-color: #200117; - color: #fff; - } - - .tag:not(body).is-primary { - background-color: #A00975; - color: #fff; - } - - .tag:not(body).is-primary.is-light { - background-color: #feecf9; - color: #f212b2; - } - - .tag:not(body).is-link { - background-color: #378BBA; - color: #fff; - } - - .tag:not(body).is-link.is-light { - background-color: #eff6fa; - color: #317ca5; - } - - .tag:not(body).is-info { - background-color: #3298dc; - color: #fff; - } - - .tag:not(body).is-info.is-light { - background-color: #eef6fc; - color: #1d72aa; - } - - .tag:not(body).is-success { - background-color: #48c774; - color: #fff; - } - - .tag:not(body).is-success.is-light { - background-color: #effaf3; - color: #257942; - } - - .tag:not(body).is-warning { - background-color: #ffdd57; - color: rgba(0, 0, 0, 0.7); - } - - .tag:not(body).is-warning.is-light { - background-color: #fffbeb; - color: #947600; - } - - .tag:not(body).is-danger { - background-color: #f14668; - color: #fff; - } - - .tag:not(body).is-danger.is-light { - background-color: #feecf0; - color: #cc0f35; - } - - .tag:not(body).is-normal { - font-size: 0.75rem; - } - - .tag:not(body).is-medium { - font-size: 1rem; - } - - .tag:not(body).is-large { - font-size: 1.25rem; - } - - .tag:not(body) .icon:first-child:not(:last-child) { - margin-left: -0.375em; - margin-right: 0.1875em; - } - - .tag:not(body) .icon:last-child:not(:first-child) { - margin-left: 0.1875em; - margin-right: -0.375em; - } - - .tag:not(body) .icon:first-child:last-child { - margin-left: -0.375em; - margin-right: -0.375em; - } - - .tag:not(body).is-delete { - margin-left: 1px; - padding: 0; - position: relative; - width: 2em; - } - - .tag:not(body).is-delete::before, .tag:not(body).is-delete::after { - background-color: currentColor; - content: ""; - display: block; - left: 50%; - position: absolute; - top: 50%; - -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg); - -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg); - transform: translateX(-50%) translateY(-50%) rotate(45deg); - -webkit-transform-origin: center center; - -ms-transform-origin: center center; - transform-origin: center center; - } - - .tag:not(body).is-delete::before { - height: 1px; - width: 50%; - } - - .tag:not(body).is-delete::after { - height: 50%; - width: 1px; - } - - .tag:not(body).is-delete:hover, .tag:not(body).is-delete:focus { - background-color: #e8e8e8; - } - - .tag:not(body).is-delete:active { - background-color: #dbdbdb; - } - - .tag:not(body).is-rounded { - border-radius: 290486px; - } - -a.tag:hover { - text-decoration: underline; -} - -.title, -.subtitle { - word-break: break-word; -} - - .title em, - .title span, - .subtitle em, - .subtitle span { - font-weight: inherit; - } - - .title sub, - .subtitle sub { - font-size: 0.75em; - } - - .title sup, - .subtitle sup { - font-size: 0.75em; - } - - .title .tag, - .subtitle .tag { - vertical-align: middle; - } - -.title { - color: #363636; - font-size: 2rem; - font-weight: 600; - line-height: 1.125; -} - - .title strong { - color: inherit; - font-weight: inherit; - } - - .title + .highlight { - margin-top: -0.75rem; - } - - .title:not(.is-spaced) + .subtitle { - margin-top: -1.25rem; - } - - .title.is-1 { - font-size: 3rem; - } - - .title.is-2 { - font-size: 2.5rem; - } - - .title.is-3 { - font-size: 2rem; - } - - .title.is-4 { - font-size: 1.5rem; - } - - .title.is-5 { - font-size: 1.25rem; - } - - .title.is-6 { - font-size: 1rem; - } - - .title.is-7 { - font-size: 0.75rem; - } - -.subtitle { - color: #4a4a4a; - font-size: 1.25rem; - font-weight: 400; - line-height: 1.25; -} - - .subtitle strong { - color: #363636; - font-weight: 600; - } - - .subtitle:not(.is-spaced) + .title { - margin-top: -1.25rem; - } - - .subtitle.is-1 { - font-size: 3rem; - } - - .subtitle.is-2 { - font-size: 2.5rem; - } - - .subtitle.is-3 { - font-size: 2rem; - } - - .subtitle.is-4 { - font-size: 1.5rem; - } - - .subtitle.is-5 { - font-size: 1.25rem; - } - - .subtitle.is-6 { - font-size: 1rem; - } - - .subtitle.is-7 { - font-size: 0.75rem; - } - -.heading { - display: block; - font-size: 11px; - letter-spacing: 1px; - margin-bottom: 5px; - text-transform: uppercase; -} - -.highlight { - font-weight: 400; - max-width: 100%; - overflow: hidden; - padding: 0; -} - - .highlight pre { - overflow: auto; - max-width: 100%; - } - -.number { - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - background-color: whitesmoke; - border-radius: 290486px; - display: -webkit-inline-box; - display: -ms-inline-flexbox; - display: inline-flex; - font-size: 1.25rem; - height: 2em; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - margin-right: 1.5rem; - min-width: 2.5em; - padding: 0.25rem 0.5rem; - text-align: center; - vertical-align: top; -} - -/* Bulma Form */ -.select select, .textarea, .input { - background-color: white; - border-color: #dbdbdb; - border-radius: 4px; - color: #363636; -} - - .select select::-moz-placeholder, .textarea::-moz-placeholder, .input::-moz-placeholder { - color: rgba(54, 54, 54, 0.3); - } - - .select select::-webkit-input-placeholder, .textarea::-webkit-input-placeholder, .input::-webkit-input-placeholder { - color: rgba(54, 54, 54, 0.3); - } - - .select select:-moz-placeholder, .textarea:-moz-placeholder, .input:-moz-placeholder { - color: rgba(54, 54, 54, 0.3); - } - - .select select:-ms-input-placeholder, .textarea:-ms-input-placeholder, .input:-ms-input-placeholder { - color: rgba(54, 54, 54, 0.3); - } - - .select select:hover, .textarea:hover, .input:hover, .select select.is-hovered, .is-hovered.textarea, .is-hovered.input { - border-color: #b5b5b5; - } - - .select select:focus, .textarea:focus, .input:focus, .select select.is-focused, .is-focused.textarea, .is-focused.input, .select select:active, .textarea:active, .input:active, .select select.is-active, .select select.active, .is-active.textarea, .textarea.active, .is-active.input, .input.active { - border-color: #378BBA; - -webkit-box-shadow: 0 0 0 0.125em rgba(55, 139, 186, 0.25); - box-shadow: 0 0 0 0.125em rgba(55, 139, 186, 0.25); - } - - .select select[disabled], [disabled].textarea, [disabled].input, fieldset[disabled] .select select, .select fieldset[disabled] select, fieldset[disabled] .textarea, fieldset[disabled] .input { - background-color: whitesmoke; - border-color: whitesmoke; - -webkit-box-shadow: none; - box-shadow: none; - color: #7a7a7a; - } - - .select select[disabled]::-moz-placeholder, [disabled].textarea::-moz-placeholder, [disabled].input::-moz-placeholder, fieldset[disabled] .select select::-moz-placeholder, .select fieldset[disabled] select::-moz-placeholder, fieldset[disabled] .textarea::-moz-placeholder, fieldset[disabled] .input::-moz-placeholder { - color: rgba(122, 122, 122, 0.3); - } - - .select select[disabled]::-webkit-input-placeholder, [disabled].textarea::-webkit-input-placeholder, [disabled].input::-webkit-input-placeholder, fieldset[disabled] .select select::-webkit-input-placeholder, .select fieldset[disabled] select::-webkit-input-placeholder, fieldset[disabled] .textarea::-webkit-input-placeholder, fieldset[disabled] .input::-webkit-input-placeholder { - color: rgba(122, 122, 122, 0.3); - } - - .select select[disabled]:-moz-placeholder, [disabled].textarea:-moz-placeholder, [disabled].input:-moz-placeholder, fieldset[disabled] .select select:-moz-placeholder, .select fieldset[disabled] select:-moz-placeholder, fieldset[disabled] .textarea:-moz-placeholder, fieldset[disabled] .input:-moz-placeholder { - color: rgba(122, 122, 122, 0.3); - } - - .select select[disabled]:-ms-input-placeholder, [disabled].textarea:-ms-input-placeholder, [disabled].input:-ms-input-placeholder, fieldset[disabled] .select select:-ms-input-placeholder, .select fieldset[disabled] select:-ms-input-placeholder, fieldset[disabled] .textarea:-ms-input-placeholder, fieldset[disabled] .input:-ms-input-placeholder { - color: rgba(122, 122, 122, 0.3); - } - -.textarea, .input { - -webkit-box-shadow: inset 0 0.0625em 0.125em rgba(10, 10, 10, 0.05); - box-shadow: inset 0 0.0625em 0.125em rgba(10, 10, 10, 0.05); - max-width: 100%; - width: 100%; -} - -[readonly].textarea, [readonly].input { - -webkit-box-shadow: none; - box-shadow: none; -} - -.is-white.textarea, .is-white.input { - border-color: white; -} - - .is-white.textarea:focus, .is-white.input:focus, .is-white.is-focused.textarea, .is-white.is-focused.input, .is-white.textarea:active, .is-white.input:active, .is-white.active, .is-white.is-active.textarea, .is-white.is-active.input { - -webkit-box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25); - box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25); - } - -.is-black.textarea, .is-black.input { - border-color: #0a0a0a; -} - - .is-black.textarea:focus, .is-black.input:focus, .is-black.is-focused.textarea, .is-black.is-focused.input, .is-black.textarea:active, .is-black.input:active, .is-black.active, .is-black.is-active.textarea, .is-black.is-active.input { - -webkit-box-shadow: 0 0 0 0.125em rgba(10, 10, 10, 0.25); - box-shadow: 0 0 0 0.125em rgba(10, 10, 10, 0.25); - } - -.is-light.textarea, .is-light.input { - border-color: whitesmoke; -} - - .is-light.textarea:focus, .is-light.input:focus, .is-light.is-focused.textarea, .is-light.is-focused.input, .is-light.textarea:active, .is-light.input:active, .is-light.active, .is-light.is-active.textarea, .is-light.is-active.input { - -webkit-box-shadow: 0 0 0 0.125em rgba(245, 245, 245, 0.25); - box-shadow: 0 0 0 0.125em rgba(245, 245, 245, 0.25); - } - -.is-dark.textarea, .is-dark.input { - border-color: #200117; -} - - .is-dark.textarea:focus, .is-dark.input:focus, .is-dark.is-focused.textarea, .is-dark.is-focused.input, .is-dark.textarea:active, .is-dark.input:active, .is-dark.active, .is-dark.is-active.textarea, .is-dark.is-active.input { - -webkit-box-shadow: 0 0 0 0.125em rgba(32, 1, 23, 0.25); - box-shadow: 0 0 0 0.125em rgba(32, 1, 23, 0.25); - } - -.is-primary.textarea, .is-primary.input { - border-color: #A00975; -} - - .is-primary.textarea:focus, .is-primary.input:focus, .is-primary.is-focused.textarea, .is-primary.is-focused.input, .is-primary.textarea:active, .is-primary.input:active, .is-primary.active, .is-primary.is-active.textarea, .is-primary.is-active.input { - -webkit-box-shadow: 0 0 0 0.125em rgba(160, 9, 117, 0.25); - box-shadow: 0 0 0 0.125em rgba(160, 9, 117, 0.25); - } - -.is-link.textarea, .is-link.input { - border-color: #378BBA; -} - - .is-link.textarea:focus, .is-link.input:focus, .is-link.is-focused.textarea, .is-link.is-focused.input, .is-link.textarea:active, .is-link.input:active, .is-link.active, .is-link.is-active.textarea, .is-link.is-active.input { - -webkit-box-shadow: 0 0 0 0.125em rgba(55, 139, 186, 0.25); - box-shadow: 0 0 0 0.125em rgba(55, 139, 186, 0.25); - } - -.is-info.textarea, .is-info.input { - border-color: #3298dc; -} - - .is-info.textarea:focus, .is-info.input:focus, .is-info.is-focused.textarea, .is-info.is-focused.input, .is-info.textarea:active, .is-info.input:active, .is-info.active, .is-info.is-active.textarea, .is-info.is-active.input { - -webkit-box-shadow: 0 0 0 0.125em rgba(50, 152, 220, 0.25); - box-shadow: 0 0 0 0.125em rgba(50, 152, 220, 0.25); - } - -.is-success.textarea, .is-success.input { - border-color: #48c774; -} - - .is-success.textarea:focus, .is-success.input:focus, .is-success.is-focused.textarea, .is-success.is-focused.input, .is-success.textarea:active, .is-success.input:active, .is-success.active, .is-success.is-active.textarea, .is-success.is-active.input { - -webkit-box-shadow: 0 0 0 0.125em rgba(72, 199, 116, 0.25); - box-shadow: 0 0 0 0.125em rgba(72, 199, 116, 0.25); - } - -.is-warning.textarea, .is-warning.input { - border-color: #ffdd57; -} - - .is-warning.textarea:focus, .is-warning.input:focus, .is-warning.is-focused.textarea, .is-warning.is-focused.input, .is-warning.textarea:active, .is-warning.input:active, .is-warning.active, .is-warning.is-active.textarea, .is-warning.is-active.input { - -webkit-box-shadow: 0 0 0 0.125em rgba(255, 221, 87, 0.25); - box-shadow: 0 0 0 0.125em rgba(255, 221, 87, 0.25); - } - -.is-danger.textarea, .is-danger.input { - border-color: #f14668; -} - - .is-danger.textarea:focus, .is-danger.input:focus, .is-danger.is-focused.textarea, .is-danger.is-focused.input, .is-danger.textarea:active, .is-danger.input:active, .is-danger.active, .is-danger.is-active.textarea, .is-danger.is-active.input { - -webkit-box-shadow: 0 0 0 0.125em rgba(241, 70, 104, 0.25); - box-shadow: 0 0 0 0.125em rgba(241, 70, 104, 0.25); - } - -.is-small.textarea, .is-small.input { - border-radius: 2px; - font-size: 0.75rem; -} - -.is-medium.textarea, .is-medium.input { - font-size: 1.25rem; -} - -.is-large.textarea, .is-large.input { - font-size: 1.5rem; -} - -.is-fullwidth.textarea, .is-fullwidth.input { - display: block; - width: 100%; -} - -.is-inline.textarea, .is-inline.input { - display: inline; - width: auto; -} - -.input.is-rounded { - border-radius: 290486px; - padding-left: calc(calc(0.75em - 1px) + 0.375em); - padding-right: calc(calc(0.75em - 1px) + 0.375em); -} - -.input.is-static { - background-color: transparent; - border-color: transparent; - -webkit-box-shadow: none; - box-shadow: none; - padding-left: 0; - padding-right: 0; -} - -.textarea { - display: block; - max-width: 100%; - min-width: 100%; - padding: calc(0.75em - 1px); - resize: vertical; -} - - .textarea:not([rows]) { - max-height: 40em; - min-height: 8em; - } - - .textarea[rows] { - height: initial; - } - - .textarea.has-fixed-size { - resize: none; - } - -.radio, .checkbox { - cursor: pointer; - display: inline-block; - line-height: 1.25; - position: relative; -} - - .radio input, .checkbox input { - cursor: pointer; - } - - .radio:hover, .checkbox:hover { - color: #363636; - } - - [disabled].radio, [disabled].checkbox, fieldset[disabled] .radio, fieldset[disabled] .checkbox, - .radio input[disabled], - .checkbox input[disabled] { - color: #7a7a7a; - cursor: not-allowed; - } - - .radio + .radio { - margin-left: 0.5em; - } - -.select { - display: inline-block; - max-width: 100%; - position: relative; - vertical-align: top; -} - - .select:not(.is-multiple) { - height: 2.5em; - } - - .select:not(.is-multiple):not(.is-loading)::after { - border-color: #378BBA; - right: 1.125em; - z-index: 4; - } - - .select.is-rounded select { - border-radius: 290486px; - padding-left: 1em; - } - - .select select { - cursor: pointer; - display: block; - font-size: 1em; - max-width: 100%; - outline: none; - } - - .select select::-ms-expand { - display: none; - } - - .select select[disabled]:hover, fieldset[disabled] .select select:hover { - border-color: whitesmoke; - } - - .select select:not([multiple]) { - padding-right: 2.5em; - } - - .select select[multiple] { - height: auto; - padding: 0; - } - - .select select[multiple] option { - padding: 0.5em 1em; - } - - .select:not(.is-multiple):not(.is-loading):hover::after { - border-color: #363636; - } - - .select.is-white:not(:hover)::after { - border-color: white; - } - - .select.is-white select { - border-color: white; - } - - .select.is-white select:hover, .select.is-white select.is-hovered { - border-color: #f2f2f2; - } - - .select.is-white select:focus, .select.is-white select.is-focused, .select.is-white select:active, .select.is-white select.is-active, .select.is-white select.active { - -webkit-box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25); - box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25); - } - - .select.is-black:not(:hover)::after { - border-color: #0a0a0a; - } - - .select.is-black select { - border-color: #0a0a0a; - } - - .select.is-black select:hover, .select.is-black select.is-hovered { - border-color: black; - } - - .select.is-black select:focus, .select.is-black select.is-focused, .select.is-black select:active, .select.is-black select.is-active, .select.is-black select.active { - -webkit-box-shadow: 0 0 0 0.125em rgba(10, 10, 10, 0.25); - box-shadow: 0 0 0 0.125em rgba(10, 10, 10, 0.25); - } - - .select.is-light:not(:hover)::after { - border-color: whitesmoke; - } - - .select.is-light select { - border-color: whitesmoke; - } - - .select.is-light select:hover, .select.is-light select.is-hovered { - border-color: #e8e8e8; - } - - .select.is-light select:focus, .select.is-light select.is-focused, .select.is-light select:active, .select.is-light select.is-active, .select.is-light select.active { - -webkit-box-shadow: 0 0 0 0.125em rgba(245, 245, 245, 0.25); - box-shadow: 0 0 0 0.125em rgba(245, 245, 245, 0.25); - } - - .select.is-dark:not(:hover)::after { - border-color: #200117; - } - - .select.is-dark select { - border-color: #200117; - } - - .select.is-dark select:hover, .select.is-dark select.is-hovered { - border-color: #070005; - } - - .select.is-dark select:focus, .select.is-dark select.is-focused, .select.is-dark select:active, .select.is-dark select.is-active, .select.is-dark select.active { - -webkit-box-shadow: 0 0 0 0.125em rgba(32, 1, 23, 0.25); - box-shadow: 0 0 0 0.125em rgba(32, 1, 23, 0.25); - } - - .select.is-primary:not(:hover)::after { - border-color: #A00975; - } - - .select.is-primary select { - border-color: #A00975; - } - - .select.is-primary select:hover, .select.is-primary select.is-hovered { - border-color: #880863; - } - - .select.is-primary select:focus, .select.is-primary select.is-focused, .select.is-primary select:active, .select.is-primary select.is-active, .select.is-primary select.active { - -webkit-box-shadow: 0 0 0 0.125em rgba(160, 9, 117, 0.25); - box-shadow: 0 0 0 0.125em rgba(160, 9, 117, 0.25); - } - - .select.is-link:not(:hover)::after { - border-color: #378BBA; - } - - .select.is-link select { - border-color: #378BBA; - } - - .select.is-link select:hover, .select.is-link select.is-hovered { - border-color: #317ca6; - } - - .select.is-link select:focus, .select.is-link select.is-focused, .select.is-link select:active, .select.is-link select.is-active, .select.is-link select.active { - -webkit-box-shadow: 0 0 0 0.125em rgba(55, 139, 186, 0.25); - box-shadow: 0 0 0 0.125em rgba(55, 139, 186, 0.25); - } - - .select.is-info:not(:hover)::after { - border-color: #3298dc; - } - - .select.is-info select { - border-color: #3298dc; - } - - .select.is-info select:hover, .select.is-info select.is-hovered { - border-color: #238cd1; - } - - .select.is-info select:focus, .select.is-info select.is-focused, .select.is-info select:active, .select.is-info select.is-active, .select.is-info select.active { - -webkit-box-shadow: 0 0 0 0.125em rgba(50, 152, 220, 0.25); - box-shadow: 0 0 0 0.125em rgba(50, 152, 220, 0.25); - } - - .select.is-success:not(:hover)::after { - border-color: #48c774; - } - - .select.is-success select { - border-color: #48c774; - } - - .select.is-success select:hover, .select.is-success select.is-hovered { - border-color: #3abb67; - } - - .select.is-success select:focus, .select.is-success select.is-focused, .select.is-success select:active, .select.is-success select.is-active, .select.is-success select.active { - -webkit-box-shadow: 0 0 0 0.125em rgba(72, 199, 116, 0.25); - box-shadow: 0 0 0 0.125em rgba(72, 199, 116, 0.25); - } - - .select.is-warning:not(:hover)::after { - border-color: #ffdd57; - } - - .select.is-warning select { - border-color: #ffdd57; - } - - .select.is-warning select:hover, .select.is-warning select.is-hovered { - border-color: #ffd83d; - } - - .select.is-warning select:focus, .select.is-warning select.is-focused, .select.is-warning select:active, .select.is-warning select.is-active, .select.is-warning select.active { - -webkit-box-shadow: 0 0 0 0.125em rgba(255, 221, 87, 0.25); - box-shadow: 0 0 0 0.125em rgba(255, 221, 87, 0.25); - } - - .select.is-danger:not(:hover)::after { - border-color: #f14668; - } - - .select.is-danger select { - border-color: #f14668; - } - - .select.is-danger select:hover, .select.is-danger select.is-hovered { - border-color: #ef2e55; - } - - .select.is-danger select:focus, .select.is-danger select.is-focused, .select.is-danger select:active, .select.is-danger select.is-active, .select.is-danger select.active { - -webkit-box-shadow: 0 0 0 0.125em rgba(241, 70, 104, 0.25); - box-shadow: 0 0 0 0.125em rgba(241, 70, 104, 0.25); - } - - .select.is-small { - border-radius: 2px; - font-size: 0.75rem; - } - - .select.is-medium { - font-size: 1.25rem; - } - - .select.is-large { - font-size: 1.5rem; - } - - .select.is-disabled::after { - border-color: #7a7a7a; - } - - .select.is-fullwidth { - width: 100%; - } - - .select.is-fullwidth select { - width: 100%; - } - - .select.is-loading::after { - margin-top: 0; - position: absolute; - right: 0.625em; - top: 0.625em; - -webkit-transform: none; - -ms-transform: none; - transform: none; - } - - .select.is-loading.is-small:after { - font-size: 0.75rem; - } - - .select.is-loading.is-medium:after { - font-size: 1.25rem; - } - - .select.is-loading.is-large:after { - font-size: 1.5rem; - } - -.file { - -webkit-box-align: stretch; - -ms-flex-align: stretch; - align-items: stretch; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: start; - -ms-flex-pack: start; - justify-content: flex-start; - position: relative; -} - - .file.is-white .file-cta { - background-color: white; - border-color: transparent; - color: #0a0a0a; - } - - .file.is-white:hover .file-cta, .file.is-white.is-hovered .file-cta { - background-color: #f9f9f9; - border-color: transparent; - color: #0a0a0a; - } - - .file.is-white:focus .file-cta, .file.is-white.is-focused .file-cta { - border-color: transparent; - -webkit-box-shadow: 0 0 0.5em rgba(255, 255, 255, 0.25); - box-shadow: 0 0 0.5em rgba(255, 255, 255, 0.25); - color: #0a0a0a; - } - - .file.is-white:active .file-cta, .file.is-white.is-active .file-cta, .is-white.active .file-cta { - background-color: #f2f2f2; - border-color: transparent; - color: #0a0a0a; - } - - .file.is-black .file-cta { - background-color: #0a0a0a; - border-color: transparent; - color: white; - } - - .file.is-black:hover .file-cta, .file.is-black.is-hovered .file-cta { - background-color: #040404; - border-color: transparent; - color: white; - } - - .file.is-black:focus .file-cta, .file.is-black.is-focused .file-cta { - border-color: transparent; - -webkit-box-shadow: 0 0 0.5em rgba(10, 10, 10, 0.25); - box-shadow: 0 0 0.5em rgba(10, 10, 10, 0.25); - color: white; - } - - .file.is-black:active .file-cta, .file.is-black.is-active .file-cta, .is-black.active .file-cta { - background-color: black; - border-color: transparent; - color: white; - } - - .file.is-light .file-cta { - background-color: whitesmoke; - border-color: transparent; - color: rgba(0, 0, 0, 0.7); - } - - .file.is-light:hover .file-cta, .file.is-light.is-hovered .file-cta { - background-color: #eeeeee; - border-color: transparent; - color: rgba(0, 0, 0, 0.7); - } - - .file.is-light:focus .file-cta, .file.is-light.is-focused .file-cta { - border-color: transparent; - -webkit-box-shadow: 0 0 0.5em rgba(245, 245, 245, 0.25); - box-shadow: 0 0 0.5em rgba(245, 245, 245, 0.25); - color: rgba(0, 0, 0, 0.7); - } - - .file.is-light:active .file-cta, .file.is-light.is-active .file-cta, .is-light.active .file-cta { - background-color: #e8e8e8; - border-color: transparent; - color: rgba(0, 0, 0, 0.7); - } - - .file.is-dark .file-cta { - background-color: #200117; - border-color: transparent; - color: #fff; - } - - .file.is-dark:hover .file-cta, .file.is-dark.is-hovered .file-cta { - background-color: #14010e; - border-color: transparent; - color: #fff; - } - - .file.is-dark:focus .file-cta, .file.is-dark.is-focused .file-cta { - border-color: transparent; - -webkit-box-shadow: 0 0 0.5em rgba(32, 1, 23, 0.25); - box-shadow: 0 0 0.5em rgba(32, 1, 23, 0.25); - color: #fff; - } - - .file.is-dark:active .file-cta, .file.is-dark.is-active .file-cta, .is-dark.active .file-cta { - background-color: #070005; - border-color: transparent; - color: #fff; - } - - .file.is-primary .file-cta { - background-color: #A00975; - border-color: transparent; - color: #fff; - } - - .file.is-primary:hover .file-cta, .file.is-primary.is-hovered .file-cta { - background-color: #94086c; - border-color: transparent; - color: #fff; - } - - .file.is-primary:focus .file-cta, .file.is-primary.is-focused .file-cta { - border-color: transparent; - -webkit-box-shadow: 0 0 0.5em rgba(160, 9, 117, 0.25); - box-shadow: 0 0 0.5em rgba(160, 9, 117, 0.25); - color: #fff; - } - - .file.is-primary:active .file-cta, .file.is-primary.is-active .file-cta, .is-primary.active .file-cta { - background-color: #880863; - border-color: transparent; - color: #fff; - } - - .file.is-link .file-cta { - background-color: #378BBA; - border-color: transparent; - color: #fff; - } - - .file.is-link:hover .file-cta, .file.is-link.is-hovered .file-cta { - background-color: #3484b0; - border-color: transparent; - color: #fff; - } - - .file.is-link:focus .file-cta, .file.is-link.is-focused .file-cta { - border-color: transparent; - -webkit-box-shadow: 0 0 0.5em rgba(55, 139, 186, 0.25); - box-shadow: 0 0 0.5em rgba(55, 139, 186, 0.25); - color: #fff; - } - - .file.is-link:active .file-cta, .file.is-link.is-active .file-cta, .is-link.active .file-cta { - background-color: #317ca6; - border-color: transparent; - color: #fff; - } - - .file.is-info .file-cta { - background-color: #3298dc; - border-color: transparent; - color: #fff; - } - - .file.is-info:hover .file-cta, .file.is-info.is-hovered .file-cta { - background-color: #2793da; - border-color: transparent; - color: #fff; - } - - .file.is-info:focus .file-cta, .file.is-info.is-focused .file-cta { - border-color: transparent; - -webkit-box-shadow: 0 0 0.5em rgba(50, 152, 220, 0.25); - box-shadow: 0 0 0.5em rgba(50, 152, 220, 0.25); - color: #fff; - } - - .file.is-info:active .file-cta, .file.is-info.is-active .file-cta, .is-info.active .file-cta { - background-color: #238cd1; - border-color: transparent; - color: #fff; - } - - .file.is-success .file-cta { - background-color: #48c774; - border-color: transparent; - color: #fff; - } - - .file.is-success:hover .file-cta, .file.is-success.is-hovered .file-cta { - background-color: #3ec46d; - border-color: transparent; - color: #fff; - } - - .file.is-success:focus .file-cta, .file.is-success.is-focused .file-cta { - border-color: transparent; - -webkit-box-shadow: 0 0 0.5em rgba(72, 199, 116, 0.25); - box-shadow: 0 0 0.5em rgba(72, 199, 116, 0.25); - color: #fff; - } - - .file.is-success:active .file-cta, .file.is-success.is-active .file-cta, .is-success.active .file-cta { - background-color: #3abb67; - border-color: transparent; - color: #fff; - } - - .file.is-warning .file-cta { - background-color: #ffdd57; - border-color: transparent; - color: rgba(0, 0, 0, 0.7); - } - - .file.is-warning:hover .file-cta, .file.is-warning.is-hovered .file-cta { - background-color: #ffdb4a; - border-color: transparent; - color: rgba(0, 0, 0, 0.7); - } - - .file.is-warning:focus .file-cta, .file.is-warning.is-focused .file-cta { - border-color: transparent; - -webkit-box-shadow: 0 0 0.5em rgba(255, 221, 87, 0.25); - box-shadow: 0 0 0.5em rgba(255, 221, 87, 0.25); - color: rgba(0, 0, 0, 0.7); - } - - .file.is-warning:active .file-cta, .file.is-warning.is-active .file-cta, .is-warning.active .file-cta { - background-color: #ffd83d; - border-color: transparent; - color: rgba(0, 0, 0, 0.7); - } - - .file.is-danger .file-cta { - background-color: #f14668; - border-color: transparent; - color: #fff; - } - - .file.is-danger:hover .file-cta, .file.is-danger.is-hovered .file-cta { - background-color: #f03a5f; - border-color: transparent; - color: #fff; - } - - .file.is-danger:focus .file-cta, .file.is-danger.is-focused .file-cta { - border-color: transparent; - -webkit-box-shadow: 0 0 0.5em rgba(241, 70, 104, 0.25); - box-shadow: 0 0 0.5em rgba(241, 70, 104, 0.25); - color: #fff; - } - - .file.is-danger:active .file-cta, .file.is-danger.is-active .file-cta, .is-danger.active .file-cta { - background-color: #ef2e55; - border-color: transparent; - color: #fff; - } - - .file.is-small { - font-size: 0.75rem; - } - - .file.is-medium { - font-size: 1.25rem; - } - - .file.is-medium .file-icon .fa { - font-size: 21px; - } - - .file.is-large { - font-size: 1.5rem; - } - - .file.is-large .file-icon .fa { - font-size: 28px; - } - - .file.has-name .file-cta { - border-bottom-right-radius: 0; - border-top-right-radius: 0; - } - - .file.has-name .file-name { - border-bottom-left-radius: 0; - border-top-left-radius: 0; - } - - .file.has-name.is-empty .file-cta { - border-radius: 4px; - } - - .file.has-name.is-empty .file-name { - display: none; - } - - .file.is-boxed .file-label { - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - } - - .file.is-boxed .file-cta { - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - height: auto; - padding: 1em 3em; - } - - .file.is-boxed .file-name { - border-width: 0 1px 1px; - } - - .file.is-boxed .file-icon { - height: 1.5em; - width: 1.5em; - } - - .file.is-boxed .file-icon .fa { - font-size: 21px; - } - - .file.is-boxed.is-small .file-icon .fa { - font-size: 14px; - } - - .file.is-boxed.is-medium .file-icon .fa { - font-size: 28px; - } - - .file.is-boxed.is-large .file-icon .fa { - font-size: 35px; - } - - .file.is-boxed.has-name .file-cta { - border-radius: 4px 4px 0 0; - } - - .file.is-boxed.has-name .file-name { - border-radius: 0 0 4px 4px; - border-width: 0 1px 1px; - } - - .file.is-centered { - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - } - - .file.is-fullwidth .file-label { - width: 100%; - } - - .file.is-fullwidth .file-name { - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - max-width: none; - } - - .file.is-right { - -webkit-box-pack: end; - -ms-flex-pack: end; - justify-content: flex-end; - } - - .file.is-right .file-cta { - border-radius: 0 4px 4px 0; - } - - .file.is-right .file-name { - border-radius: 4px 0 0 4px; - border-width: 1px 0 1px 1px; - -webkit-box-ordinal-group: 0; - -ms-flex-order: -1; - order: -1; - } - -.file-label { - -webkit-box-align: stretch; - -ms-flex-align: stretch; - align-items: stretch; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - cursor: pointer; - -webkit-box-pack: start; - -ms-flex-pack: start; - justify-content: flex-start; - overflow: hidden; - position: relative; -} - - .file-label:hover .file-cta { - background-color: #eeeeee; - color: #363636; - } - - .file-label:hover .file-name { - border-color: #d5d5d5; - } - - .file-label:active .file-cta { - background-color: #e8e8e8; - color: #363636; - } - - .file-label:active .file-name { - border-color: #cfcfcf; - } - -.file-input { - height: 100%; - left: 0; - opacity: 0; - outline: none; - position: absolute; - top: 0; - width: 100%; -} - -.file-cta, -.file-name { - border-color: #dbdbdb; - border-radius: 4px; - font-size: 1em; - padding-left: 1em; - padding-right: 1em; - white-space: nowrap; -} - -.file-cta { - background-color: whitesmoke; - color: #4a4a4a; -} - -.file-name { - border-color: #dbdbdb; - border-style: solid; - border-width: 1px 1px 1px 0; - display: block; - max-width: 16em; - overflow: hidden; - text-align: inherit; - -o-text-overflow: ellipsis; - text-overflow: ellipsis; -} - -.file-icon { - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - height: 1em; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - margin-right: 0.5em; - width: 1em; -} - - .file-icon .fa { - font-size: 14px; - } - -.label { - color: #363636; - display: block; - font-size: 1rem; - font-weight: 700; -} - - .label:not(:last-child) { - margin-bottom: 0.5em; - } - - .label.is-small { - font-size: 0.75rem; - } - - .label.is-medium { - font-size: 1.25rem; - } - - .label.is-large { - font-size: 1.5rem; - } - -.help { - display: block; - font-size: 0.75rem; - margin-top: 0.25rem; -} - - .help.is-white { - color: white; - } - - .help.is-black { - color: #0a0a0a; - } - - .help.is-light { - color: whitesmoke; - } - - .help.is-dark { - color: #200117; - } - - .help.is-primary { - color: #A00975; - } - - .help.is-link { - color: #378BBA; - } - - .help.is-info { - color: #3298dc; - } - - .help.is-success { - color: #48c774; - } - - .help.is-warning { - color: #ffdd57; - } - - .help.is-danger { - color: #f14668; - } - -.field:not(:last-child) { - margin-bottom: 0.75rem; -} - -.field.has-addons { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: start; - -ms-flex-pack: start; - justify-content: flex-start; -} - - .field.has-addons .control:not(:last-child) { - margin-right: -1px; - } - - .field.has-addons .control:not(:first-child):not(:last-child) .button, - .field.has-addons .control:not(:first-child):not(:last-child) .input, - .field.has-addons .control:not(:first-child):not(:last-child) .select select { - border-radius: 0; - } - - .field.has-addons .control:first-child:not(:only-child) .button, - .field.has-addons .control:first-child:not(:only-child) .input, - .field.has-addons .control:first-child:not(:only-child) .select select { - border-bottom-right-radius: 0; - border-top-right-radius: 0; - } - - .field.has-addons .control:last-child:not(:only-child) .button, - .field.has-addons .control:last-child:not(:only-child) .input, - .field.has-addons .control:last-child:not(:only-child) .select select { - border-bottom-left-radius: 0; - border-top-left-radius: 0; - } - - .field.has-addons .control .button:not([disabled]):hover, .field.has-addons .control .button:not([disabled]).is-hovered, - .field.has-addons .control .input:not([disabled]):hover, - .field.has-addons .control .input:not([disabled]).is-hovered, - .field.has-addons .control .select select:not([disabled]):hover, - .field.has-addons .control .select select:not([disabled]).is-hovered { - z-index: 2; - } - - .field.has-addons .control .button:not([disabled]):focus, .field.has-addons .control .button:not([disabled]).is-focused, .field.has-addons .control .button:not([disabled]):active, .field.has-addons .control .button:not([disabled]).is-active, .field.has-addons .control .active:not([disabled]), - .field.has-addons .control .input:not([disabled]):focus, - .field.has-addons .control .input:not([disabled]).is-focused, - .field.has-addons .control .input:not([disabled]):active, - .field.has-addons .control .input:not([disabled]).is-active, - .field.has-addons .control .select select:not([disabled]):focus, - .field.has-addons .control .select select:not([disabled]).is-focused, - .field.has-addons .control .select select:not([disabled]):active, - .field.has-addons .control .select select:not([disabled]).is-active { - z-index: 3; - } - - .field.has-addons .control .button:not([disabled]):focus:hover, .field.has-addons .control .button:not([disabled]).is-focused:hover, .field.has-addons .control .button:not([disabled]):active:hover, .field.has-addons .control .button:not([disabled]).is-active:hover, .field.has-addons .control .active:not([disabled]):hover, - .field.has-addons .control .input:not([disabled]):focus:hover, - .field.has-addons .control .input:not([disabled]).is-focused:hover, - .field.has-addons .control .input:not([disabled]):active:hover, - .field.has-addons .control .input:not([disabled]).is-active:hover, - .field.has-addons .control .select select:not([disabled]):focus:hover, - .field.has-addons .control .select select:not([disabled]).is-focused:hover, - .field.has-addons .control .select select:not([disabled]):active:hover, - .field.has-addons .control .select select:not([disabled]).is-active:hover { - z-index: 4; - } - - .field.has-addons .control.is-expanded { - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - -ms-flex-negative: 1; - flex-shrink: 1; - } - - .field.has-addons.has-addons-centered { - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - } - - .field.has-addons.has-addons-right { - -webkit-box-pack: end; - -ms-flex-pack: end; - justify-content: flex-end; - } - - .field.has-addons.has-addons-fullwidth .control { - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - -ms-flex-negative: 0; - flex-shrink: 0; - } - -.field.is-grouped { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: start; - -ms-flex-pack: start; - justify-content: flex-start; -} - - .field.is-grouped > .control { - -ms-flex-negative: 0; - flex-shrink: 0; - } - - .field.is-grouped > .control:not(:last-child) { - margin-bottom: 0; - margin-right: 0.75rem; - } - - .field.is-grouped > .control.is-expanded { - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - -ms-flex-negative: 1; - flex-shrink: 1; - } - - .field.is-grouped.is-grouped-centered { - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - } - - .field.is-grouped.is-grouped-right { - -webkit-box-pack: end; - -ms-flex-pack: end; - justify-content: flex-end; - } - - .field.is-grouped.is-grouped-multiline { - -ms-flex-wrap: wrap; - flex-wrap: wrap; - } - - .field.is-grouped.is-grouped-multiline > .control:last-child, .field.is-grouped.is-grouped-multiline > .control:not(:last-child) { - margin-bottom: 0.75rem; - } - - .field.is-grouped.is-grouped-multiline:last-child { - margin-bottom: -0.75rem; - } - - .field.is-grouped.is-grouped-multiline:not(:last-child) { - margin-bottom: 0; - } - -@media screen and (min-width: 769px), print { - .field.is-horizontal { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - } -} - -.field-label .label { - font-size: inherit; -} - -@media screen and (max-width: 768px) { - .field-label { - margin-bottom: 0.5rem; - } -} - -@media screen and (min-width: 769px), print { - .field-label { - -ms-flex-preferred-size: 0; - flex-basis: 0; - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - -ms-flex-negative: 0; - flex-shrink: 0; - margin-right: 1.5rem; - text-align: right; - } - - .field-label.is-small { - font-size: 0.75rem; - padding-top: 0.375em; - } - - .field-label.is-normal { - padding-top: 0.375em; - } - - .field-label.is-medium { - font-size: 1.25rem; - padding-top: 0.375em; - } - - .field-label.is-large { - font-size: 1.5rem; - padding-top: 0.375em; - } -} - -.field-body .field .field { - margin-bottom: 0; -} - -@media screen and (min-width: 769px), print { - .field-body { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -ms-flex-preferred-size: 0; - flex-basis: 0; - -webkit-box-flex: 5; - -ms-flex-positive: 5; - flex-grow: 5; - -ms-flex-negative: 1; - flex-shrink: 1; - } - - .field-body .field { - margin-bottom: 0; - } - - .field-body > .field { - -ms-flex-negative: 1; - flex-shrink: 1; - } - - .field-body > .field:not(.is-narrow) { - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - } - - .field-body > .field:not(:last-child) { - margin-right: 0.75rem; - } -} - -.control { - -webkit-box-sizing: border-box; - box-sizing: border-box; - clear: both; - font-size: 1rem; - position: relative; - text-align: inherit; -} - - .control.has-icons-left .input:focus ~ .icon, - .control.has-icons-left .select:focus ~ .icon, .control.has-icons-right .input:focus ~ .icon, - .control.has-icons-right .select:focus ~ .icon { - color: #4a4a4a; - } - - .control.has-icons-left .input.is-small ~ .icon, - .control.has-icons-left .select.is-small ~ .icon, .control.has-icons-right .input.is-small ~ .icon, - .control.has-icons-right .select.is-small ~ .icon { - font-size: 0.75rem; - } - - .control.has-icons-left .input.is-medium ~ .icon, - .control.has-icons-left .select.is-medium ~ .icon, .control.has-icons-right .input.is-medium ~ .icon, - .control.has-icons-right .select.is-medium ~ .icon { - font-size: 1.25rem; - } - - .control.has-icons-left .input.is-large ~ .icon, - .control.has-icons-left .select.is-large ~ .icon, .control.has-icons-right .input.is-large ~ .icon, - .control.has-icons-right .select.is-large ~ .icon { - font-size: 1.5rem; - } - - .control.has-icons-left .icon, .control.has-icons-right .icon { - color: #dbdbdb; - height: 2.5em; - pointer-events: none; - position: absolute; - top: 0; - width: 2.5em; - z-index: 4; - } - - .control.has-icons-left .input, - .control.has-icons-left .select select { - padding-left: 2.5em; - } - - .control.has-icons-left .icon.is-left { - left: 0; - } - - .control.has-icons-right .input, - .control.has-icons-right .select select { - padding-right: 2.5em; - } - - .control.has-icons-right .icon.is-right { - right: 0; - } - - .control.is-loading::after { - position: absolute !important; - right: 0.625em; - top: 0.625em; - z-index: 4; - } - - .control.is-loading.is-small:after { - font-size: 0.75rem; - } - - .control.is-loading.is-medium:after { - font-size: 1.25rem; - } - - .control.is-loading.is-large:after { - font-size: 1.5rem; - } - -/* Bulma Components */ -.breadcrumb { - font-size: 1rem; - white-space: nowrap; -} - - .breadcrumb a { - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - color: #378BBA; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - padding: 0 0.75em; - } - - .breadcrumb a:hover { - color: #A00975; - } - - .breadcrumb li { - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - } - - .breadcrumb li:first-child a { - padding-left: 0; - } - - .breadcrumb li.is-active a, .breadcrumb li.active a { - color: #363636; - cursor: default; - pointer-events: none; - } - - .breadcrumb li + li::before { - color: #b5b5b5; - content: "\0002f"; - } - - .breadcrumb ul, - .breadcrumb ol { - -webkit-box-align: start; - -ms-flex-align: start; - align-items: flex-start; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - -webkit-box-pack: start; - -ms-flex-pack: start; - justify-content: flex-start; - } - - .breadcrumb .icon:first-child { - margin-right: 0.5em; - } - - .breadcrumb .icon:last-child { - margin-left: 0.5em; - } - - .breadcrumb.is-centered ol, - .breadcrumb.is-centered ul { - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - } - - .breadcrumb.is-right ol, - .breadcrumb.is-right ul { - -webkit-box-pack: end; - -ms-flex-pack: end; - justify-content: flex-end; - } - - .breadcrumb.is-small { - font-size: 0.75rem; - } - - .breadcrumb.is-medium { - font-size: 1.25rem; - } - - .breadcrumb.is-large { - font-size: 1.5rem; - } - - .breadcrumb.has-arrow-separator li + li::before { - content: "\02192"; - } - - .breadcrumb.has-bullet-separator li + li::before { - content: "\02022"; - } - - .breadcrumb.has-dot-separator li + li::before { - content: "\000b7"; - } - - .breadcrumb.has-succeeds-separator li + li::before { - content: "\0227B"; - } - -.card { - background-color: white; - border-radius: 0.25rem; - -webkit-box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1), 0 0px 0 1px rgba(10, 10, 10, 0.02); - box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1), 0 0px 0 1px rgba(10, 10, 10, 0.02); - color: #4a4a4a; - max-width: 100%; - position: relative; -} - -.card-footer:first-child, .card-content:first-child, .card-header:first-child { - border-top-left-radius: 0.25rem; - border-top-right-radius: 0.25rem; -} - -.card-footer:last-child, .card-content:last-child, .card-header:last-child { - border-bottom-left-radius: 0.25rem; - border-bottom-right-radius: 0.25rem; -} - -.card-header { - background-color: transparent; - -webkit-box-align: stretch; - -ms-flex-align: stretch; - align-items: stretch; - -webkit-box-shadow: 0 0.125em 0.25em rgba(10, 10, 10, 0.1); - box-shadow: 0 0.125em 0.25em rgba(10, 10, 10, 0.1); - display: -webkit-box; - display: -ms-flexbox; - display: flex; -} - -.card-header-title { - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - color: #363636; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - font-weight: 700; - padding: 0.75rem 1rem; -} - - .card-header-title.is-centered { - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - } - -.card-header-icon { - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - cursor: pointer; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - padding: 0.75rem 1rem; -} - -.card-image { - display: block; - position: relative; -} - - .card-image:first-child img { - border-top-left-radius: 0.25rem; - border-top-right-radius: 0.25rem; - } - - .card-image:last-child img { - border-bottom-left-radius: 0.25rem; - border-bottom-right-radius: 0.25rem; - } - -.card-content { - background-color: transparent; - padding: 1.5rem; -} - -.card-footer { - background-color: transparent; - border-top: 1px solid #ededed; - -webkit-box-align: stretch; - -ms-flex-align: stretch; - align-items: stretch; - display: -webkit-box; - display: -ms-flexbox; - display: flex; -} - -.card-footer-item { - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -ms-flex-preferred-size: 0; - flex-basis: 0; - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - -ms-flex-negative: 0; - flex-shrink: 0; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - padding: 0.75rem; -} - - .card-footer-item:not(:last-child) { - border-right: 1px solid #ededed; - } - -.card .media:not(:last-child) { - margin-bottom: 1.5rem; -} - -.dropdown { - display: -webkit-inline-box; - display: -ms-inline-flexbox; - display: inline-flex; - position: relative; - vertical-align: top; -} - - .dropdown.is-active .dropdown-menu, .dropdown.active .dropdown-menu, .dropdown.is-hoverable:hover .dropdown-menu { - display: block; - } - - .dropdown.is-right .dropdown-menu { - left: auto; - right: 0; - } - - .dropdown.is-up .dropdown-menu { - bottom: 100%; - padding-bottom: 4px; - padding-top: initial; - top: auto; - } - -.dropdown-menu { - display: none; - left: 0; - min-width: 12rem; - padding-top: 4px; - position: absolute; - top: 100%; - z-index: 20; -} - -.dropdown-content { - background-color: white; - border-radius: 4px; - -webkit-box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1), 0 0px 0 1px rgba(10, 10, 10, 0.02); - box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1), 0 0px 0 1px rgba(10, 10, 10, 0.02); - padding-bottom: 0.5rem; - padding-top: 0.5rem; -} - -.dropdown-item { - color: #4a4a4a; - display: block; - font-size: 0.875rem; - line-height: 1.5; - padding: 0.375rem 1rem; - position: relative; -} - -a.dropdown-item, -button.dropdown-item { - padding-right: 3rem; - text-align: inherit; - white-space: nowrap; - width: 100%; -} - - a.dropdown-item:hover, - button.dropdown-item:hover { - background-color: whitesmoke; - color: #0a0a0a; - } - - a.dropdown-item.is-active, .dropdown-item.active, - button.dropdown-item.is-active { - background-color: #378BBA; - color: #fff; - } - -.dropdown-divider { - background-color: #ededed; - border: none; - display: block; - height: 1px; - margin: 0.5rem 0; -} - -.level { - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-box-pack: justify; - -ms-flex-pack: justify; - justify-content: space-between; -} - - .level code { - border-radius: 4px; - } - - .level img { - display: inline-block; - vertical-align: top; - } - - .level.is-mobile { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - } - - .level.is-mobile .level-left, - .level.is-mobile .level-right { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - } - - .level.is-mobile .level-left + .level-right { - margin-top: 0; - } - - .level.is-mobile .level-item:not(:last-child) { - margin-bottom: 0; - margin-right: 0.75rem; - } - - .level.is-mobile .level-item:not(.is-narrow) { - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - } - -@media screen and (min-width: 769px), print { - .level { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - } - - .level > .level-item:not(.is-narrow) { - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - } -} - -.level-item { - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -ms-flex-preferred-size: auto; - flex-basis: auto; - -webkit-box-flex: 0; - -ms-flex-positive: 0; - flex-grow: 0; - -ms-flex-negative: 0; - flex-shrink: 0; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; -} - - .level-item .title, - .level-item .subtitle { - margin-bottom: 0; - } - -@media screen and (max-width: 768px) { - .level-item:not(:last-child) { - margin-bottom: 0.75rem; - } -} - -.level-left, -.level-right { - -ms-flex-preferred-size: auto; - flex-basis: auto; - -webkit-box-flex: 0; - -ms-flex-positive: 0; - flex-grow: 0; - -ms-flex-negative: 0; - flex-shrink: 0; -} - - .level-left .level-item.is-flexible, - .level-right .level-item.is-flexible { - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - } - -@media screen and (min-width: 769px), print { - .level-left .level-item:not(:last-child), - .level-right .level-item:not(:last-child) { - margin-right: 0.75rem; - } -} - -.level-left { - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-box-pack: start; - -ms-flex-pack: start; - justify-content: flex-start; -} - -@media screen and (max-width: 768px) { - .level-left + .level-right { - margin-top: 1.5rem; - } -} - -@media screen and (min-width: 769px), print { - .level-left { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - } -} - -.level-right { - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-box-pack: end; - -ms-flex-pack: end; - justify-content: flex-end; -} - -@media screen and (min-width: 769px), print { - .level-right { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - } -} - -.media { - -webkit-box-align: start; - -ms-flex-align: start; - align-items: flex-start; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - text-align: inherit; -} - - .media .content:not(:last-child) { - margin-bottom: 0.75rem; - } - - .media .media { - border-top: 1px solid rgba(219, 219, 219, 0.5); - display: -webkit-box; - display: -ms-flexbox; - display: flex; - padding-top: 0.75rem; - } - - .media .media .content:not(:last-child), - .media .media .control:not(:last-child) { - margin-bottom: 0.5rem; - } - - .media .media .media { - padding-top: 0.5rem; - } - - .media .media .media + .media { - margin-top: 0.5rem; - } - - .media + .media { - border-top: 1px solid rgba(219, 219, 219, 0.5); - margin-top: 1rem; - padding-top: 1rem; - } - - .media.is-large + .media { - margin-top: 1.5rem; - padding-top: 1.5rem; - } - -.media-left, -.media-right { - -ms-flex-preferred-size: auto; - flex-basis: auto; - -webkit-box-flex: 0; - -ms-flex-positive: 0; - flex-grow: 0; - -ms-flex-negative: 0; - flex-shrink: 0; -} - -.media-left { - margin-right: 1rem; -} - -.media-right { - margin-left: 1rem; -} - -.media-content { - -ms-flex-preferred-size: auto; - flex-basis: auto; - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - -ms-flex-negative: 1; - flex-shrink: 1; - text-align: inherit; -} - -@media screen and (max-width: 768px) { - .media-content { - overflow-x: auto; - } -} - -.menu { - font-size: 1rem; -} - - .menu.is-small { - font-size: 0.75rem; - } - - .menu.is-medium { - font-size: 1.25rem; - } - - .menu.is-large { - font-size: 1.5rem; - } - -.menu-list, .navbar-nav { - line-height: 1.25; -} - - .menu-list a, .navbar-nav a { - border-radius: 2px; - color: #4a4a4a; - display: block; - padding: 0.5em 0.75em; - } - - .menu-list a:hover, .navbar-nav a:hover { - background-color: whitesmoke; - color: #363636; - } - - .menu-list a.is-active, .menu-list a.active, .navbar-nav a.is-active, .navbar-nav a.active { - background-color: #378BBA; - color: #fff; - } - - .menu-list li ul, .navbar-nav li ul { - border-left: 1px solid #dbdbdb; - margin: 0.75em; - padding-left: 0.75em; - } - -.menu-label, .nav-header { - color: #7a7a7a; - font-size: 0.75em; - letter-spacing: 0.1em; - text-transform: uppercase; -} - - .menu-label:not(:first-child), .nav-header:not(:first-child) { - margin-top: 1em; - } - - .menu-label:not(:last-child), .nav-header:not(:last-child) { - margin-bottom: 1em; - } - -.message { - background-color: whitesmoke; - border-radius: 4px; - font-size: 1rem; -} - - .message strong { - color: currentColor; - } - - .message a:not(.button):not(.tag):not(.dropdown-item) { - color: currentColor; - text-decoration: underline; - } - - .message.is-small { - font-size: 0.75rem; - } - - .message.is-medium { - font-size: 1.25rem; - } - - .message.is-large { - font-size: 1.5rem; - } - - .message.is-white { - background-color: white; - } - - .message.is-white .message-header { - background-color: white; - color: #0a0a0a; - } - - .message.is-white .message-body { - border-color: white; - } - - .message.is-black { - background-color: #fafafa; - } - - .message.is-black .message-header { - background-color: #0a0a0a; - color: white; - } - - .message.is-black .message-body { - border-color: #0a0a0a; - } - - .message.is-light { - background-color: #fafafa; - } - - .message.is-light .message-header { - background-color: whitesmoke; - color: rgba(0, 0, 0, 0.7); - } - - .message.is-light .message-body { - border-color: whitesmoke; - } - - .message.is-dark { - background-color: #fff5fc; - } - - .message.is-dark .message-header { - background-color: #200117; - color: #fff; - } - - .message.is-dark .message-body { - border-color: #200117; - } - - .message.is-primary { - background-color: #feecf9; - } - - .message.is-primary .message-header { - background-color: #A00975; - color: #fff; - } - - .message.is-primary .message-body { - border-color: #A00975; - color: #f212b2; - } - - .message.is-link { - background-color: #eff6fa; - } - - .message.is-link .message-header { - background-color: #378BBA; - color: #fff; - } - - .message.is-link .message-body { - border-color: #378BBA; - color: #317ca5; - } - - .message.is-info { - background-color: #eef6fc; - } - - .message.is-info .message-header { - background-color: #3298dc; - color: #fff; - } - - .message.is-info .message-body { - border-color: #3298dc; - color: #1d72aa; - } - - .message.is-success { - background-color: #effaf3; - } - - .message.is-success .message-header { - background-color: #48c774; - color: #fff; - } - - .message.is-success .message-body { - border-color: #48c774; - color: #257942; - } - - .message.is-warning { - background-color: #fffbeb; - } - - .message.is-warning .message-header { - background-color: #ffdd57; - color: rgba(0, 0, 0, 0.7); - } - - .message.is-warning .message-body { - border-color: #ffdd57; - color: #947600; - } - - .message.is-danger { - background-color: #feecf0; - } - - .message.is-danger .message-header { - background-color: #f14668; - color: #fff; - } - - .message.is-danger .message-body { - border-color: #f14668; - color: #cc0f35; - } - -.message-header { - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - background-color: #4a4a4a; - border-radius: 4px 4px 0 0; - color: #fff; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - font-weight: 700; - -webkit-box-pack: justify; - -ms-flex-pack: justify; - justify-content: space-between; - line-height: 1.25; - padding: 0.75em 1em; - position: relative; -} - - .message-header .delete { - -webkit-box-flex: 0; - -ms-flex-positive: 0; - flex-grow: 0; - -ms-flex-negative: 0; - flex-shrink: 0; - margin-left: 0.75em; - } - - .message-header + .message-body { - border-width: 0; - border-top-left-radius: 0; - border-top-right-radius: 0; - } - -.message-body { - border-color: #dbdbdb; - border-radius: 4px; - border-style: solid; - border-width: 0 0 0 4px; - color: #4a4a4a; - padding: 1.25em 1.5em; -} - - .message-body code, - .message-body pre { - background-color: white; - } - - .message-body pre code { - background-color: transparent; - } - -.modal { - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - display: none; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - overflow: hidden; - position: fixed; - z-index: 40; -} - - .modal.is-active, .modal.active { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - } - -.modal-background { - background-color: rgba(10, 10, 10, 0.86); -} - -.modal-content, -.modal-card { - margin: 0 20px; - max-height: calc(100vh - 160px); - overflow: auto; - position: relative; - width: 100%; -} - -@media screen and (min-width: 769px) { - .modal-content, - .modal-card { - margin: 0 auto; - max-height: calc(100vh - 40px); - width: 640px; - } -} - -.modal-close { - background: none; - height: 40px; - position: fixed; - right: 20px; - top: 20px; - width: 40px; -} - -.modal-card { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - max-height: calc(100vh - 40px); - overflow: hidden; - -ms-overflow-y: visible; -} - -.modal-card-head, -.modal-card-foot { - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - background-color: whitesmoke; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -ms-flex-negative: 0; - flex-shrink: 0; - -webkit-box-pack: start; - -ms-flex-pack: start; - justify-content: flex-start; - padding: 20px; - position: relative; -} - -.modal-card-head { - border-bottom: 1px solid #dbdbdb; - border-top-left-radius: 6px; - border-top-right-radius: 6px; -} - -.modal-card-title { - color: #363636; - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - -ms-flex-negative: 0; - flex-shrink: 0; - font-size: 1.5rem; - line-height: 1; -} - -.modal-card-foot { - border-bottom-left-radius: 6px; - border-bottom-right-radius: 6px; - border-top: 1px solid #dbdbdb; -} - - .modal-card-foot .button:not(:last-child) { - margin-right: 0.5em; - } - -.modal-card-body { - -webkit-overflow-scrolling: touch; - background-color: white; - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - -ms-flex-negative: 1; - flex-shrink: 1; - overflow: auto; - padding: 20px; -} - -.navbar { - background-color: white; - min-height: 3.25rem; - position: relative; - z-index: 30; -} - - .navbar.is-white { - background-color: white; - color: #0a0a0a; - } - - .navbar.is-white .navbar-brand > .navbar-item, - .navbar.is-white .navbar-brand .navbar-link { - color: #0a0a0a; - } - - .navbar.is-white .navbar-brand > a.navbar-item:focus, .navbar.is-white .navbar-brand > a.navbar-item:hover, .navbar.is-white .navbar-brand > a.navbar-item.is-active, .navbar.is-white .navbar-brand > .navbar-item.active, - .navbar.is-white .navbar-brand .navbar-link:focus, - .navbar.is-white .navbar-brand .navbar-link:hover, - .navbar.is-white .navbar-brand .navbar-link.is-active, - .navbar.is-white .navbar-brand .navbar-link.active { - background-color: #f2f2f2; - color: #0a0a0a; - } - - .navbar.is-white .navbar-brand .navbar-link::after { - border-color: #0a0a0a; - } - - .navbar.is-white .navbar-burger { - color: #0a0a0a; - } - -@media screen and (min-width: 1024px) { - .navbar.is-white .navbar-start > .navbar-item, - .navbar.is-white .navbar-start .navbar-link, - .navbar.is-white .navbar-end > .navbar-item, - .navbar.is-white .navbar-end .navbar-link { - color: #0a0a0a; - } - - .navbar.is-white .navbar-start > a.navbar-item:focus, .navbar.is-white .navbar-start > a.navbar-item:hover, .navbar.is-white .navbar-start > a.navbar-item.is-active, .navbar.is-white .navbar-start > .navbar-item.active, - .navbar.is-white .navbar-start .navbar-link:focus, - .navbar.is-white .navbar-start .navbar-link:hover, - .navbar.is-white .navbar-start .navbar-link.is-active, - .navbar.is-white .navbar-start .navbar-link.active, - .navbar.is-white .navbar-end > a.navbar-item:focus, - .navbar.is-white .navbar-end > a.navbar-item:hover, - .navbar.is-white .navbar-end > a.navbar-item.is-active, - .navbar.is-white .navbar-end > .navbar-item.active, - .navbar.is-white .navbar-end .navbar-link:focus, - .navbar.is-white .navbar-end .navbar-link:hover, - .navbar.is-white .navbar-end .navbar-link.is-active, - .navbar.is-white .navbar-end .navbar-link.active { - background-color: #f2f2f2; - color: #0a0a0a; - } - - .navbar.is-white .navbar-start .navbar-link::after, - .navbar.is-white .navbar-end .navbar-link::after { - border-color: #0a0a0a; - } - - .navbar.is-white .navbar-item.has-dropdown:focus .navbar-link, - .navbar.is-white .navbar-item.has-dropdown:hover .navbar-link, - .navbar.is-white .navbar-item.has-dropdown.is-active .navbar-link, - .navbar.is-white .has-dropdown.active .navbar-link { - background-color: #f2f2f2; - color: #0a0a0a; - } - - .navbar.is-white .navbar-dropdown a.navbar-item.is-active, .navbar.is-white .navbar-dropdown .navbar-item.active { - background-color: white; - color: #0a0a0a; - } -} - -.navbar.is-black { - background-color: #0a0a0a; - color: white; -} - - .navbar.is-black .navbar-brand > .navbar-item, - .navbar.is-black .navbar-brand .navbar-link { - color: white; - } - - .navbar.is-black .navbar-brand > a.navbar-item:focus, .navbar.is-black .navbar-brand > a.navbar-item:hover, .navbar.is-black .navbar-brand > a.navbar-item.is-active, .navbar.is-black .navbar-brand > .navbar-item.active, - .navbar.is-black .navbar-brand .navbar-link:focus, - .navbar.is-black .navbar-brand .navbar-link:hover, - .navbar.is-black .navbar-brand .navbar-link.is-active, - .navbar.is-black .navbar-brand .navbar-link.active { - background-color: black; - color: white; - } - - .navbar.is-black .navbar-brand .navbar-link::after { - border-color: white; - } - - .navbar.is-black .navbar-burger { - color: white; - } - -@media screen and (min-width: 1024px) { - .navbar.is-black .navbar-start > .navbar-item, - .navbar.is-black .navbar-start .navbar-link, - .navbar.is-black .navbar-end > .navbar-item, - .navbar.is-black .navbar-end .navbar-link { - color: white; - } - - .navbar.is-black .navbar-start > a.navbar-item:focus, .navbar.is-black .navbar-start > a.navbar-item:hover, .navbar.is-black .navbar-start > a.navbar-item.is-active, .navbar.is-black .navbar-start > .navbar-item.active, - .navbar.is-black .navbar-start .navbar-link:focus, - .navbar.is-black .navbar-start .navbar-link:hover, - .navbar.is-black .navbar-start .navbar-link.is-active, - .navbar.is-black .navbar-start .navbar-link.active, - .navbar.is-black .navbar-end > a.navbar-item:focus, - .navbar.is-black .navbar-end > a.navbar-item:hover, - .navbar.is-black .navbar-end > a.navbar-item.is-active, - .navbar.is-black .navbar-end > .navbar-item.active, - .navbar.is-black .navbar-end .navbar-link:focus, - .navbar.is-black .navbar-end .navbar-link:hover, - .navbar.is-black .navbar-end .navbar-link.is-active, - .navbar.is-black .navbar-end .navbar-link.active { - background-color: black; - color: white; - } - - .navbar.is-black .navbar-start .navbar-link::after, - .navbar.is-black .navbar-end .navbar-link::after { - border-color: white; - } - - .navbar.is-black .navbar-item.has-dropdown:focus .navbar-link, - .navbar.is-black .navbar-item.has-dropdown:hover .navbar-link, - .navbar.is-black .navbar-item.has-dropdown.is-active .navbar-link, - .navbar.is-black .has-dropdown.active .navbar-link { - background-color: black; - color: white; - } - - .navbar.is-black .navbar-dropdown a.navbar-item.is-active, .navbar.is-black .navbar-dropdown .navbar-item.active { - background-color: #0a0a0a; - color: white; - } -} - -.navbar.is-light { - background-color: whitesmoke; - color: rgba(0, 0, 0, 0.7); -} - - .navbar.is-light .navbar-brand > .navbar-item, - .navbar.is-light .navbar-brand .navbar-link { - color: rgba(0, 0, 0, 0.7); - } - - .navbar.is-light .navbar-brand > a.navbar-item:focus, .navbar.is-light .navbar-brand > a.navbar-item:hover, .navbar.is-light .navbar-brand > a.navbar-item.is-active, .navbar.is-light .navbar-brand > .navbar-item.active, - .navbar.is-light .navbar-brand .navbar-link:focus, - .navbar.is-light .navbar-brand .navbar-link:hover, - .navbar.is-light .navbar-brand .navbar-link.is-active, - .navbar.is-light .navbar-brand .navbar-link.active { - background-color: #e8e8e8; - color: rgba(0, 0, 0, 0.7); - } - - .navbar.is-light .navbar-brand .navbar-link::after { - border-color: rgba(0, 0, 0, 0.7); - } - - .navbar.is-light .navbar-burger { - color: rgba(0, 0, 0, 0.7); - } - -@media screen and (min-width: 1024px) { - .navbar.is-light .navbar-start > .navbar-item, - .navbar.is-light .navbar-start .navbar-link, - .navbar.is-light .navbar-end > .navbar-item, - .navbar.is-light .navbar-end .navbar-link { - color: rgba(0, 0, 0, 0.7); - } - - .navbar.is-light .navbar-start > a.navbar-item:focus, .navbar.is-light .navbar-start > a.navbar-item:hover, .navbar.is-light .navbar-start > a.navbar-item.is-active, .navbar.is-light .navbar-start > .navbar-item.active, - .navbar.is-light .navbar-start .navbar-link:focus, - .navbar.is-light .navbar-start .navbar-link:hover, - .navbar.is-light .navbar-start .navbar-link.is-active, - .navbar.is-light .navbar-start .navbar-link.active, - .navbar.is-light .navbar-end > a.navbar-item:focus, - .navbar.is-light .navbar-end > a.navbar-item:hover, - .navbar.is-light .navbar-end > a.navbar-item.is-active, - .navbar.is-light .navbar-end > .navbar-item.active, - .navbar.is-light .navbar-end .navbar-link:focus, - .navbar.is-light .navbar-end .navbar-link:hover, - .navbar.is-light .navbar-end .navbar-link.is-active, - .navbar.is-light .navbar-end .navbar-link.active { - background-color: #e8e8e8; - color: rgba(0, 0, 0, 0.7); - } - - .navbar.is-light .navbar-start .navbar-link::after, - .navbar.is-light .navbar-end .navbar-link::after { - border-color: rgba(0, 0, 0, 0.7); - } - - .navbar.is-light .navbar-item.has-dropdown:focus .navbar-link, - .navbar.is-light .navbar-item.has-dropdown:hover .navbar-link, - .navbar.is-light .navbar-item.has-dropdown.is-active .navbar-link, - .navbar.is-light .has-dropdown.active .navbar-link { - background-color: #e8e8e8; - color: rgba(0, 0, 0, 0.7); - } - - .navbar.is-light .navbar-dropdown a.navbar-item.is-active, .navbar.is-light .navbar-dropdown .navbar-item.active { - background-color: whitesmoke; - color: rgba(0, 0, 0, 0.7); - } -} - -.navbar.is-dark { - background-color: #200117; - color: #fff; -} - - .navbar.is-dark .navbar-brand > .navbar-item, - .navbar.is-dark .navbar-brand .navbar-link { - color: #fff; - } - - .navbar.is-dark .navbar-brand > a.navbar-item:focus, .navbar.is-dark .navbar-brand > a.navbar-item:hover, .navbar.is-dark .navbar-brand > a.navbar-item.is-active, .navbar.is-dark .navbar-brand > .navbar-item.active, - .navbar.is-dark .navbar-brand .navbar-link:focus, - .navbar.is-dark .navbar-brand .navbar-link:hover, - .navbar.is-dark .navbar-brand .navbar-link.is-active, - .navbar.is-dark .navbar-brand .navbar-link.active { - background-color: #070005; - color: #fff; - } - - .navbar.is-dark .navbar-brand .navbar-link::after { - border-color: #fff; - } - - .navbar.is-dark .navbar-burger { - color: #fff; - } - -@media screen and (min-width: 1024px) { - .navbar.is-dark .navbar-start > .navbar-item, - .navbar.is-dark .navbar-start .navbar-link, - .navbar.is-dark .navbar-end > .navbar-item, - .navbar.is-dark .navbar-end .navbar-link { - color: #fff; - } - - .navbar.is-dark .navbar-start > a.navbar-item:focus, .navbar.is-dark .navbar-start > a.navbar-item:hover, .navbar.is-dark .navbar-start > a.navbar-item.is-active, .navbar.is-dark .navbar-start > .navbar-item.active, - .navbar.is-dark .navbar-start .navbar-link:focus, - .navbar.is-dark .navbar-start .navbar-link:hover, - .navbar.is-dark .navbar-start .navbar-link.is-active, - .navbar.is-dark .navbar-start .navbar-link.active, - .navbar.is-dark .navbar-end > a.navbar-item:focus, - .navbar.is-dark .navbar-end > a.navbar-item:hover, - .navbar.is-dark .navbar-end > a.navbar-item.is-active, - .navbar.is-dark .navbar-end > .navbar-item.active, - .navbar.is-dark .navbar-end .navbar-link:focus, - .navbar.is-dark .navbar-end .navbar-link:hover, - .navbar.is-dark .navbar-end .navbar-link.is-active, - .navbar.is-dark .navbar-end .navbar-link.active { - background-color: #070005; - color: #fff; - } - - .navbar.is-dark .navbar-start .navbar-link::after, - .navbar.is-dark .navbar-end .navbar-link::after { - border-color: #fff; - } - - .navbar.is-dark .navbar-item.has-dropdown:focus .navbar-link, - .navbar.is-dark .navbar-item.has-dropdown:hover .navbar-link, - .navbar.is-dark .navbar-item.has-dropdown.is-active .navbar-link, - .navbar.is-dark .has-dropdown.active .navbar-link { - background-color: #070005; - color: #fff; - } - - .navbar.is-dark .navbar-dropdown a.navbar-item.is-active, .navbar.is-dark .navbar-dropdown .navbar-item.active { - background-color: #200117; - color: #fff; - } -} - -.navbar.is-primary { - background-color: #A00975; - color: #fff; -} - - .navbar.is-primary .navbar-brand > .navbar-item, - .navbar.is-primary .navbar-brand .navbar-link { - color: #fff; - } - - .navbar.is-primary .navbar-brand > a.navbar-item:focus, .navbar.is-primary .navbar-brand > a.navbar-item:hover, .navbar.is-primary .navbar-brand > a.navbar-item.is-active, .navbar.is-primary .navbar-brand > .navbar-item.active, - .navbar.is-primary .navbar-brand .navbar-link:focus, - .navbar.is-primary .navbar-brand .navbar-link:hover, - .navbar.is-primary .navbar-brand .navbar-link.is-active, - .navbar.is-primary .navbar-brand .navbar-link.active { - background-color: #880863; - color: #fff; - } - - .navbar.is-primary .navbar-brand .navbar-link::after { - border-color: #fff; - } - - .navbar.is-primary .navbar-burger { - color: #fff; - } - -@media screen and (min-width: 1024px) { - .navbar.is-primary .navbar-start > .navbar-item, - .navbar.is-primary .navbar-start .navbar-link, - .navbar.is-primary .navbar-end > .navbar-item, - .navbar.is-primary .navbar-end .navbar-link { - color: #fff; - } - - .navbar.is-primary .navbar-start > a.navbar-item:focus, .navbar.is-primary .navbar-start > a.navbar-item:hover, .navbar.is-primary .navbar-start > a.navbar-item.is-active, .navbar.is-primary .navbar-start > .navbar-item.active, - .navbar.is-primary .navbar-start .navbar-link:focus, - .navbar.is-primary .navbar-start .navbar-link:hover, - .navbar.is-primary .navbar-start .navbar-link.is-active, - .navbar.is-primary .navbar-start .navbar-link.active, - .navbar.is-primary .navbar-end > a.navbar-item:focus, - .navbar.is-primary .navbar-end > a.navbar-item:hover, - .navbar.is-primary .navbar-end > a.navbar-item.is-active, - .navbar.is-primary .navbar-end > .navbar-item.active, - .navbar.is-primary .navbar-end .navbar-link:focus, - .navbar.is-primary .navbar-end .navbar-link:hover, - .navbar.is-primary .navbar-end .navbar-link.is-active, - .navbar.is-primary .navbar-end .navbar-link.active { - background-color: #880863; - color: #fff; - } - - .navbar.is-primary .navbar-start .navbar-link::after, - .navbar.is-primary .navbar-end .navbar-link::after { - border-color: #fff; - } - - .navbar.is-primary .navbar-item.has-dropdown:focus .navbar-link, - .navbar.is-primary .navbar-item.has-dropdown:hover .navbar-link, - .navbar.is-primary .navbar-item.has-dropdown.is-active .navbar-link, - .navbar.is-primary .has-dropdown.active .navbar-link { - background-color: #880863; - color: #fff; - } - - .navbar.is-primary .navbar-dropdown a.navbar-item.is-active, .navbar.is-primary .navbar-dropdown .navbar-item.active { - background-color: #A00975; - color: #fff; - } -} - -.navbar.is-link { - background-color: #378BBA; - color: #fff; -} - - .navbar.is-link .navbar-brand > .navbar-item, - .navbar.is-link .navbar-brand .navbar-link { - color: #fff; - } - - .navbar.is-link .navbar-brand > a.navbar-item:focus, .navbar.is-link .navbar-brand > a.navbar-item:hover, .navbar.is-link .navbar-brand > a.navbar-item.is-active, .navbar.is-link .navbar-brand > .navbar-item.active, - .navbar.is-link .navbar-brand .navbar-link:focus, - .navbar.is-link .navbar-brand .navbar-link:hover, - .navbar.is-link .navbar-brand .navbar-link.is-active, - .navbar.is-link .navbar-brand .navbar-link.active { - background-color: #317ca6; - color: #fff; - } - - .navbar.is-link .navbar-brand .navbar-link::after { - border-color: #fff; - } - - .navbar.is-link .navbar-burger { - color: #fff; - } - -@media screen and (min-width: 1024px) { - .navbar.is-link .navbar-start > .navbar-item, - .navbar.is-link .navbar-start .navbar-link, - .navbar.is-link .navbar-end > .navbar-item, - .navbar.is-link .navbar-end .navbar-link { - color: #fff; - } - - .navbar.is-link .navbar-start > a.navbar-item:focus, .navbar.is-link .navbar-start > a.navbar-item:hover, .navbar.is-link .navbar-start > a.navbar-item.is-active, .navbar.is-link .navbar-start > .navbar-item.active, - .navbar.is-link .navbar-start .navbar-link:focus, - .navbar.is-link .navbar-start .navbar-link:hover, - .navbar.is-link .navbar-start .navbar-link.is-active, - .navbar.is-link .navbar-start .navbar-link.active, - .navbar.is-link .navbar-end > a.navbar-item:focus, - .navbar.is-link .navbar-end > a.navbar-item:hover, - .navbar.is-link .navbar-end > a.navbar-item.is-active, - .navbar.is-link .navbar-end > .navbar-item.active, - .navbar.is-link .navbar-end .navbar-link:focus, - .navbar.is-link .navbar-end .navbar-link:hover, - .navbar.is-link .navbar-end .navbar-link.is-active, - .navbar.is-link .navbar-end .navbar-link.active { - background-color: #317ca6; - color: #fff; - } - - .navbar.is-link .navbar-start .navbar-link::after, - .navbar.is-link .navbar-end .navbar-link::after { - border-color: #fff; - } - - .navbar.is-link .navbar-item.has-dropdown:focus .navbar-link, - .navbar.is-link .navbar-item.has-dropdown:hover .navbar-link, - .navbar.is-link .navbar-item.has-dropdown.is-active .navbar-link, - .navbar.is-link .has-dropdown.active .navbar-link { - background-color: #317ca6; - color: #fff; - } - - .navbar.is-link .navbar-dropdown a.navbar-item.is-active, .navbar.is-link .navbar-dropdown .navbar-item.active { - background-color: #378BBA; - color: #fff; - } -} - -.navbar.is-info { - background-color: #3298dc; - color: #fff; -} - - .navbar.is-info .navbar-brand > .navbar-item, - .navbar.is-info .navbar-brand .navbar-link { - color: #fff; - } - - .navbar.is-info .navbar-brand > a.navbar-item:focus, .navbar.is-info .navbar-brand > a.navbar-item:hover, .navbar.is-info .navbar-brand > a.navbar-item.is-active, .navbar.is-info .navbar-brand > .navbar-item.active, - .navbar.is-info .navbar-brand .navbar-link:focus, - .navbar.is-info .navbar-brand .navbar-link:hover, - .navbar.is-info .navbar-brand .navbar-link.is-active, - .navbar.is-info .navbar-brand .navbar-link.active { - background-color: #238cd1; - color: #fff; - } - - .navbar.is-info .navbar-brand .navbar-link::after { - border-color: #fff; - } - - .navbar.is-info .navbar-burger { - color: #fff; - } - -@media screen and (min-width: 1024px) { - .navbar.is-info .navbar-start > .navbar-item, - .navbar.is-info .navbar-start .navbar-link, - .navbar.is-info .navbar-end > .navbar-item, - .navbar.is-info .navbar-end .navbar-link { - color: #fff; - } - - .navbar.is-info .navbar-start > a.navbar-item:focus, .navbar.is-info .navbar-start > a.navbar-item:hover, .navbar.is-info .navbar-start > a.navbar-item.is-active, .navbar.is-info .navbar-start > .navbar-item.active, - .navbar.is-info .navbar-start .navbar-link:focus, - .navbar.is-info .navbar-start .navbar-link:hover, - .navbar.is-info .navbar-start .navbar-link.is-active, - .navbar.is-info .navbar-start .navbar-link.active, - .navbar.is-info .navbar-end > a.navbar-item:focus, - .navbar.is-info .navbar-end > a.navbar-item:hover, - .navbar.is-info .navbar-end > a.navbar-item.is-active, - .navbar.is-info .navbar-end > .navbar-item.active, - .navbar.is-info .navbar-end .navbar-link:focus, - .navbar.is-info .navbar-end .navbar-link:hover, - .navbar.is-info .navbar-end .navbar-link.is-active, - .navbar.is-info .navbar-end .navbar-link.active { - background-color: #238cd1; - color: #fff; - } - - .navbar.is-info .navbar-start .navbar-link::after, - .navbar.is-info .navbar-end .navbar-link::after { - border-color: #fff; - } - - .navbar.is-info .navbar-item.has-dropdown:focus .navbar-link, - .navbar.is-info .navbar-item.has-dropdown:hover .navbar-link, - .navbar.is-info .navbar-item.has-dropdown.is-active .navbar-link, - .navbar.is-info .has-dropdown.active .navbar-link { - background-color: #238cd1; - color: #fff; - } - - .navbar.is-info .navbar-dropdown a.navbar-item.is-active, .navbar.is-info .navbar-dropdown .navbar-item.active { - background-color: #3298dc; - color: #fff; - } -} - -.navbar.is-success { - background-color: #48c774; - color: #fff; -} - - .navbar.is-success .navbar-brand > .navbar-item, - .navbar.is-success .navbar-brand .navbar-link { - color: #fff; - } - - .navbar.is-success .navbar-brand > a.navbar-item:focus, .navbar.is-success .navbar-brand > a.navbar-item:hover, .navbar.is-success .navbar-brand > a.navbar-item.is-active, .navbar.is-success .navbar-brand > .navbar-item.active, - .navbar.is-success .navbar-brand .navbar-link:focus, - .navbar.is-success .navbar-brand .navbar-link:hover, - .navbar.is-success .navbar-brand .navbar-link.is-active, - .navbar.is-success .navbar-brand .navbar-link.active { - background-color: #3abb67; - color: #fff; - } - - .navbar.is-success .navbar-brand .navbar-link::after { - border-color: #fff; - } - - .navbar.is-success .navbar-burger { - color: #fff; - } - -@media screen and (min-width: 1024px) { - .navbar.is-success .navbar-start > .navbar-item, - .navbar.is-success .navbar-start .navbar-link, - .navbar.is-success .navbar-end > .navbar-item, - .navbar.is-success .navbar-end .navbar-link { - color: #fff; - } - - .navbar.is-success .navbar-start > a.navbar-item:focus, .navbar.is-success .navbar-start > a.navbar-item:hover, .navbar.is-success .navbar-start > a.navbar-item.is-active, .navbar.is-success .navbar-start > .navbar-item.active, - .navbar.is-success .navbar-start .navbar-link:focus, - .navbar.is-success .navbar-start .navbar-link:hover, - .navbar.is-success .navbar-start .navbar-link.is-active, - .navbar.is-success .navbar-start .navbar-link.active, - .navbar.is-success .navbar-end > a.navbar-item:focus, - .navbar.is-success .navbar-end > a.navbar-item:hover, - .navbar.is-success .navbar-end > a.navbar-item.is-active, - .navbar.is-success .navbar-end > .navbar-item.active, - .navbar.is-success .navbar-end .navbar-link:focus, - .navbar.is-success .navbar-end .navbar-link:hover, - .navbar.is-success .navbar-end .navbar-link.is-active, - .navbar.is-success .navbar-end .navbar-link.active { - background-color: #3abb67; - color: #fff; - } - - .navbar.is-success .navbar-start .navbar-link::after, - .navbar.is-success .navbar-end .navbar-link::after { - border-color: #fff; - } - - .navbar.is-success .navbar-item.has-dropdown:focus .navbar-link, - .navbar.is-success .navbar-item.has-dropdown:hover .navbar-link, - .navbar.is-success .navbar-item.has-dropdown.is-active .navbar-link, - .navbar.is-success .has-dropdown.active .navbar-link { - background-color: #3abb67; - color: #fff; - } - - .navbar.is-success .navbar-dropdown a.navbar-item.is-active, .navbar.is-success .navbar-dropdown .navbar-item.active { - background-color: #48c774; - color: #fff; - } -} - -.navbar.is-warning { - background-color: #ffdd57; - color: rgba(0, 0, 0, 0.7); -} - - .navbar.is-warning .navbar-brand > .navbar-item, - .navbar.is-warning .navbar-brand .navbar-link { - color: rgba(0, 0, 0, 0.7); - } - - .navbar.is-warning .navbar-brand > a.navbar-item:focus, .navbar.is-warning .navbar-brand > a.navbar-item:hover, .navbar.is-warning .navbar-brand > a.navbar-item.is-active, .navbar.is-warning .navbar-brand > .navbar-item.active, - .navbar.is-warning .navbar-brand .navbar-link:focus, - .navbar.is-warning .navbar-brand .navbar-link:hover, - .navbar.is-warning .navbar-brand .navbar-link.is-active, - .navbar.is-warning .navbar-brand .navbar-link.active { - background-color: #ffd83d; - color: rgba(0, 0, 0, 0.7); - } - - .navbar.is-warning .navbar-brand .navbar-link::after { - border-color: rgba(0, 0, 0, 0.7); - } - - .navbar.is-warning .navbar-burger { - color: rgba(0, 0, 0, 0.7); - } - -@media screen and (min-width: 1024px) { - .navbar.is-warning .navbar-start > .navbar-item, - .navbar.is-warning .navbar-start .navbar-link, - .navbar.is-warning .navbar-end > .navbar-item, - .navbar.is-warning .navbar-end .navbar-link { - color: rgba(0, 0, 0, 0.7); - } - - .navbar.is-warning .navbar-start > a.navbar-item:focus, .navbar.is-warning .navbar-start > a.navbar-item:hover, .navbar.is-warning .navbar-start > a.navbar-item.is-active, .navbar.is-warning .navbar-start > .navbar-item.active, - .navbar.is-warning .navbar-start .navbar-link:focus, - .navbar.is-warning .navbar-start .navbar-link:hover, - .navbar.is-warning .navbar-start .navbar-link.is-active, - .navbar.is-warning .navbar-start .navbar-link.active, - .navbar.is-warning .navbar-end > a.navbar-item:focus, - .navbar.is-warning .navbar-end > a.navbar-item:hover, - .navbar.is-warning .navbar-end > a.navbar-item.is-active, - .navbar.is-warning .navbar-end > .navbar-item.active, - .navbar.is-warning .navbar-end .navbar-link:focus, - .navbar.is-warning .navbar-end .navbar-link:hover, - .navbar.is-warning .navbar-end .navbar-link.is-active, - .navbar.is-warning .navbar-end .navbar-link.active { - background-color: #ffd83d; - color: rgba(0, 0, 0, 0.7); - } - - .navbar.is-warning .navbar-start .navbar-link::after, - .navbar.is-warning .navbar-end .navbar-link::after { - border-color: rgba(0, 0, 0, 0.7); - } - - .navbar.is-warning .navbar-item.has-dropdown:focus .navbar-link, - .navbar.is-warning .navbar-item.has-dropdown:hover .navbar-link, - .navbar.is-warning .navbar-item.has-dropdown.is-active .navbar-link, - .navbar.is-warning .has-dropdown.active .navbar-link { - background-color: #ffd83d; - color: rgba(0, 0, 0, 0.7); - } - - .navbar.is-warning .navbar-dropdown a.navbar-item.is-active, .navbar.is-warning .navbar-dropdown .navbar-item.active { - background-color: #ffdd57; - color: rgba(0, 0, 0, 0.7); - } -} - -.navbar.is-danger { - background-color: #f14668; - color: #fff; -} - - .navbar.is-danger .navbar-brand > .navbar-item, - .navbar.is-danger .navbar-brand .navbar-link { - color: #fff; - } - - .navbar.is-danger .navbar-brand > a.navbar-item:focus, .navbar.is-danger .navbar-brand > a.navbar-item:hover, .navbar.is-danger .navbar-brand > a.navbar-item.is-active, .navbar.is-danger .navbar-brand > .navbar-item.active, - .navbar.is-danger .navbar-brand .navbar-link:focus, - .navbar.is-danger .navbar-brand .navbar-link:hover, - .navbar.is-danger .navbar-brand .navbar-link.is-active, - .navbar.is-danger .navbar-brand .navbar-link.active { - background-color: #ef2e55; - color: #fff; - } - - .navbar.is-danger .navbar-brand .navbar-link::after { - border-color: #fff; - } - - .navbar.is-danger .navbar-burger { - color: #fff; - } - -@media screen and (min-width: 1024px) { - .navbar.is-danger .navbar-start > .navbar-item, - .navbar.is-danger .navbar-start .navbar-link, - .navbar.is-danger .navbar-end > .navbar-item, - .navbar.is-danger .navbar-end .navbar-link { - color: #fff; - } - - .navbar.is-danger .navbar-start > a.navbar-item:focus, .navbar.is-danger .navbar-start > a.navbar-item:hover, .navbar.is-danger .navbar-start > a.navbar-item.is-active, .navbar.is-danger .navbar-start > .navbar-item.active, - .navbar.is-danger .navbar-start .navbar-link:focus, - .navbar.is-danger .navbar-start .navbar-link:hover, - .navbar.is-danger .navbar-start .navbar-link.is-active, - .navbar.is-danger .navbar-start .navbar-link.active, - .navbar.is-danger .navbar-end > a.navbar-item:focus, - .navbar.is-danger .navbar-end > a.navbar-item:hover, - .navbar.is-danger .navbar-end > a.navbar-item.is-active, - .navbar.is-danger .navbar-end > .navbar-item.active, - .navbar.is-danger .navbar-end .navbar-link:focus, - .navbar.is-danger .navbar-end .navbar-link:hover, - .navbar.is-danger .navbar-end .navbar-link.is-active, - .navbar.is-danger .navbar-end .navbar-link.active { - background-color: #ef2e55; - color: #fff; - } - - .navbar.is-danger .navbar-start .navbar-link::after, - .navbar.is-danger .navbar-end .navbar-link::after { - border-color: #fff; - } - - .navbar.is-danger .navbar-item.has-dropdown:focus .navbar-link, - .navbar.is-danger .navbar-item.has-dropdown:hover .navbar-link, - .navbar.is-danger .navbar-item.has-dropdown.is-active .navbar-link, - .navbar.is-danger .has-dropdown.active .navbar-link { - background-color: #ef2e55; - color: #fff; - } - - .navbar.is-danger .navbar-dropdown a.navbar-item.is-active, .navbar.is-danger .navbar-dropdown .navbar-item.active { - background-color: #f14668; - color: #fff; - } -} - -.navbar > .container { - -webkit-box-align: stretch; - -ms-flex-align: stretch; - align-items: stretch; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - min-height: 3.25rem; - width: 100%; -} - -.navbar.has-shadow { - -webkit-box-shadow: 0 2px 0 0 whitesmoke; - box-shadow: 0 2px 0 0 whitesmoke; -} - -.navbar.is-fixed-bottom, .navbar.is-fixed-top { - left: 0; - position: fixed; - right: 0; - z-index: 30; -} - -.navbar.is-fixed-bottom { - bottom: 0; -} - - .navbar.is-fixed-bottom.has-shadow { - -webkit-box-shadow: 0 -2px 0 0 whitesmoke; - box-shadow: 0 -2px 0 0 whitesmoke; - } - -.navbar.is-fixed-top { - top: 0; -} - -html.has-navbar-fixed-top, -body.has-navbar-fixed-top { - padding-top: 3.25rem; -} - -html.has-navbar-fixed-bottom, -body.has-navbar-fixed-bottom { - padding-bottom: 3.25rem; -} - -.navbar-brand, -.navbar-tabs { - -webkit-box-align: stretch; - -ms-flex-align: stretch; - align-items: stretch; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -ms-flex-negative: 0; - flex-shrink: 0; - min-height: 3.25rem; -} - - .navbar-brand a.navbar-item:focus, .navbar-brand a.navbar-item:hover { - background-color: transparent; - } - -.navbar-tabs { - -webkit-overflow-scrolling: touch; - max-width: 100vw; - overflow-x: auto; - overflow-y: hidden; -} - -.navbar-burger { - color: #4a4a4a; - cursor: pointer; - display: block; - height: 3.25rem; - position: relative; - width: 3.25rem; - margin-left: auto; -} - - .navbar-burger span { - background-color: currentColor; - display: block; - height: 1px; - left: calc(50% - 8px); - position: absolute; - -webkit-transform-origin: center; - -ms-transform-origin: center; - transform-origin: center; - -webkit-transition-duration: 86ms; - -o-transition-duration: 86ms; - transition-duration: 86ms; - -webkit-transition-property: background-color, opacity, -webkit-transform; - transition-property: background-color, opacity, -webkit-transform; - -o-transition-property: background-color, opacity, transform; - transition-property: background-color, opacity, transform; - transition-property: background-color, opacity, transform, -webkit-transform; - -webkit-transition-timing-function: ease-out; - -o-transition-timing-function: ease-out; - transition-timing-function: ease-out; - width: 16px; - } - - .navbar-burger span:nth-child(1) { - top: calc(50% - 6px); - } - - .navbar-burger span:nth-child(2) { - top: calc(50% - 1px); - } - - .navbar-burger span:nth-child(3) { - top: calc(50% + 4px); - } - - .navbar-burger:hover { - background-color: rgba(0, 0, 0, 0.05); - } - - .navbar-burger.is-active span:nth-child(1), .navbar-burger.active span:nth-child(1) { - -webkit-transform: translateY(5px) rotate(45deg); - -ms-transform: translateY(5px) rotate(45deg); - transform: translateY(5px) rotate(45deg); - } - - .navbar-burger.is-active span:nth-child(2), .navbar-burger.active span:nth-child(2) { - opacity: 0; - } - - .navbar-burger.is-active span:nth-child(3), .navbar-burger.active span:nth-child(3) { - -webkit-transform: translateY(-5px) rotate(-45deg); - -ms-transform: translateY(-5px) rotate(-45deg); - transform: translateY(-5px) rotate(-45deg); - } - -.navbar-menu { - display: none; -} - -.navbar-item, -.navbar-link { - color: #4a4a4a; - display: block; - line-height: 1.5; - padding: 0.5rem 0.75rem; - position: relative; -} - - .navbar-item .icon:only-child, - .navbar-link .icon:only-child { - margin-left: -0.25rem; - margin-right: -0.25rem; - } - -a.navbar-item, -.navbar-link { - cursor: pointer; -} - - a.navbar-item:focus, a.navbar-item:focus-within, a.navbar-item:hover, a.navbar-item.is-active, .navbar-item.active, - .navbar-link:focus, - .navbar-link:focus-within, - .navbar-link:hover, - .navbar-link.is-active, - .navbar-link.active { - background-color: #fafafa; - color: #378BBA; - } - -.navbar-item { - -webkit-box-flex: 0; - -ms-flex-positive: 0; - flex-grow: 0; - -ms-flex-negative: 0; - flex-shrink: 0; -} - - .navbar-item img { - max-height: 1.75rem; - } - - .navbar-item.has-dropdown { - padding: 0; - } - - .navbar-item.is-expanded { - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - -ms-flex-negative: 1; - flex-shrink: 1; - } - - .navbar-item.is-tab { - border-bottom: 1px solid transparent; - min-height: 3.25rem; - padding-bottom: calc(0.5rem - 1px); - } - - .navbar-item.is-tab:focus, .navbar-item.is-tab:hover { - background-color: transparent; - border-bottom-color: #378BBA; - } - - .navbar-item.is-tab.is-active, .is-tab.active { - background-color: transparent; - border-bottom-color: #378BBA; - border-bottom-style: solid; - border-bottom-width: 3px; - color: #378BBA; - padding-bottom: calc(0.5rem - 3px); - } - -.navbar-content { - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - -ms-flex-negative: 1; - flex-shrink: 1; -} - -.navbar-link:not(.is-arrowless) { - padding-right: 2.5em; -} - - .navbar-link:not(.is-arrowless)::after { - border-color: #378BBA; - margin-top: -0.375em; - right: 1.125em; - } - -.navbar-dropdown { - font-size: 0.875rem; - padding-bottom: 0.5rem; - padding-top: 0.5rem; -} - - .navbar-dropdown .navbar-item { - padding-left: 1.5rem; - padding-right: 1.5rem; - } - -.navbar-divider { - background-color: whitesmoke; - border: none; - display: none; - height: 2px; - margin: 0.5rem 0; -} - -@media screen and (max-width: 1023px) { - .navbar > .container { - display: block; - } - - .navbar-brand .navbar-item, - .navbar-tabs .navbar-item { - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - } - - .navbar-link::after { - display: none; - } - - .navbar-menu { - background-color: white; - -webkit-box-shadow: 0 8px 16px rgba(10, 10, 10, 0.1); - box-shadow: 0 8px 16px rgba(10, 10, 10, 0.1); - padding: 0.5rem 0; - } - - .navbar-menu.is-active, .navbar-menu.active { - display: block; - } - - .navbar.is-fixed-bottom-touch, .navbar.is-fixed-top-touch { - left: 0; - position: fixed; - right: 0; - z-index: 30; - } - - .navbar.is-fixed-bottom-touch { - bottom: 0; - } - - .navbar.is-fixed-bottom-touch.has-shadow { - -webkit-box-shadow: 0 -2px 3px rgba(10, 10, 10, 0.1); - box-shadow: 0 -2px 3px rgba(10, 10, 10, 0.1); - } - - .navbar.is-fixed-top-touch { - top: 0; - } - - .navbar.is-fixed-top .navbar-menu, .navbar.is-fixed-top-touch .navbar-menu { - -webkit-overflow-scrolling: touch; - max-height: calc(100vh - 3.25rem); - overflow: auto; - } - - html.has-navbar-fixed-top-touch, - body.has-navbar-fixed-top-touch { - padding-top: 3.25rem; - } - - html.has-navbar-fixed-bottom-touch, - body.has-navbar-fixed-bottom-touch { - padding-bottom: 3.25rem; - } -} - -@media screen and (min-width: 1024px) { - .navbar, - .navbar-menu, - .navbar-start, - .navbar-end { - -webkit-box-align: stretch; - -ms-flex-align: stretch; - align-items: stretch; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - } - - .navbar { - min-height: 3.25rem; - } - - .navbar.is-spaced { - padding: 1rem 2rem; - } - - .navbar.is-spaced .navbar-start, - .navbar.is-spaced .navbar-end { - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - } - - .navbar.is-spaced a.navbar-item, - .navbar.is-spaced .navbar-link { - border-radius: 4px; - } - - .navbar.is-transparent a.navbar-item:focus, .navbar.is-transparent a.navbar-item:hover, .navbar.is-transparent a.navbar-item.is-active, .navbar.is-transparent .navbar-item.active, - .navbar.is-transparent .navbar-link:focus, - .navbar.is-transparent .navbar-link:hover, - .navbar.is-transparent .navbar-link.is-active, - .navbar.is-transparent .navbar-link.active { - background-color: transparent !important; - } - - .navbar.is-transparent .navbar-item.has-dropdown.is-active .navbar-link, .navbar.is-transparent .has-dropdown.active .navbar-link, .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus .navbar-link, .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus-within .navbar-link, .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:hover .navbar-link { - background-color: transparent !important; - } - - .navbar.is-transparent .navbar-dropdown a.navbar-item:focus, .navbar.is-transparent .navbar-dropdown a.navbar-item:hover { - background-color: whitesmoke; - color: #0a0a0a; - } - - .navbar.is-transparent .navbar-dropdown a.navbar-item.is-active, .navbar.is-transparent .navbar-dropdown .navbar-item.active { - background-color: whitesmoke; - color: #378BBA; - } - - .navbar-burger { - display: none; - } - - .navbar-item, - .navbar-link { - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - } - - .navbar-item.has-dropdown { - -webkit-box-align: stretch; - -ms-flex-align: stretch; - align-items: stretch; - } - - .navbar-item.has-dropdown-up .navbar-link::after { - -webkit-transform: rotate(135deg) translate(0.25em, -0.25em); - -ms-transform: rotate(135deg) translate(0.25em, -0.25em); - transform: rotate(135deg) translate(0.25em, -0.25em); - } - - .navbar-item.has-dropdown-up .navbar-dropdown { - border-bottom: 2px solid #dbdbdb; - border-radius: 6px 6px 0 0; - border-top: none; - bottom: 100%; - -webkit-box-shadow: 0 -8px 8px rgba(10, 10, 10, 0.1); - box-shadow: 0 -8px 8px rgba(10, 10, 10, 0.1); - top: auto; - } - - .navbar-item.is-active .navbar-dropdown, .navbar-item.active .navbar-dropdown, .navbar-item.is-hoverable:focus .navbar-dropdown, .navbar-item.is-hoverable:focus-within .navbar-dropdown, .navbar-item.is-hoverable:hover .navbar-dropdown { - display: block; - } - - .navbar.is-spaced .navbar-item.is-active .navbar-dropdown, .navbar.is-spaced .navbar-item.active .navbar-dropdown, .navbar-item.is-active .navbar-dropdown.is-boxed, .navbar-item.active .navbar-dropdown.is-boxed, .navbar.is-spaced .navbar-item.is-hoverable:focus .navbar-dropdown, .navbar-item.is-hoverable:focus .navbar-dropdown.is-boxed, .navbar.is-spaced .navbar-item.is-hoverable:focus-within .navbar-dropdown, .navbar-item.is-hoverable:focus-within .navbar-dropdown.is-boxed, .navbar.is-spaced .navbar-item.is-hoverable:hover .navbar-dropdown, .navbar-item.is-hoverable:hover .navbar-dropdown.is-boxed { - opacity: 1; - pointer-events: auto; - -webkit-transform: translateY(0); - -ms-transform: translateY(0); - transform: translateY(0); - } - - .navbar-menu { - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - -ms-flex-negative: 0; - flex-shrink: 0; - } - - .navbar-start { - -webkit-box-pack: start; - -ms-flex-pack: start; - justify-content: flex-start; - margin-right: auto; - } - - .navbar-end { - -webkit-box-pack: end; - -ms-flex-pack: end; - justify-content: flex-end; - margin-left: auto; - } - - .navbar-dropdown { - background-color: white; - border-bottom-left-radius: 6px; - border-bottom-right-radius: 6px; - border-top: 2px solid #dbdbdb; - -webkit-box-shadow: 0 8px 8px rgba(10, 10, 10, 0.1); - box-shadow: 0 8px 8px rgba(10, 10, 10, 0.1); - display: none; - font-size: 0.875rem; - left: 0; - min-width: 100%; - position: absolute; - top: 100%; - z-index: 20; - } - - .navbar-dropdown .navbar-item { - padding: 0.375rem 1rem; - white-space: nowrap; - } - - .navbar-dropdown a.navbar-item { - padding-right: 3rem; - } - - .navbar-dropdown a.navbar-item:focus, .navbar-dropdown a.navbar-item:hover { - background-color: whitesmoke; - color: #0a0a0a; - } - - .navbar-dropdown a.navbar-item.is-active, .navbar-dropdown .navbar-item.active { - background-color: whitesmoke; - color: #378BBA; - } - - .navbar.is-spaced .navbar-dropdown, .navbar-dropdown.is-boxed { - border-radius: 6px; - border-top: none; - -webkit-box-shadow: 0 8px 8px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1); - box-shadow: 0 8px 8px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1); - display: block; - opacity: 0; - pointer-events: none; - top: calc(100% + (-4px)); - -webkit-transform: translateY(-5px); - -ms-transform: translateY(-5px); - transform: translateY(-5px); - -webkit-transition-duration: 86ms; - -o-transition-duration: 86ms; - transition-duration: 86ms; - -webkit-transition-property: opacity, -webkit-transform; - transition-property: opacity, -webkit-transform; - -o-transition-property: opacity, transform; - transition-property: opacity, transform; - transition-property: opacity, transform, -webkit-transform; - } - - .navbar-dropdown.is-right { - left: auto; - right: 0; - } - - .navbar-divider { - display: block; - } - - .navbar > .container .navbar-brand, - .container > .navbar .navbar-brand { - margin-left: -0.75rem; - } - - .navbar > .container .navbar-menu, - .container > .navbar .navbar-menu { - margin-right: -0.75rem; - } - - .navbar.is-fixed-bottom-desktop, .navbar.is-fixed-top-desktop { - left: 0; - position: fixed; - right: 0; - z-index: 30; - } - - .navbar.is-fixed-bottom-desktop { - bottom: 0; - } - - .navbar.is-fixed-bottom-desktop.has-shadow { - -webkit-box-shadow: 0 -2px 3px rgba(10, 10, 10, 0.1); - box-shadow: 0 -2px 3px rgba(10, 10, 10, 0.1); - } - - .navbar.is-fixed-top-desktop { - top: 0; - } - - html.has-navbar-fixed-top-desktop, - body.has-navbar-fixed-top-desktop { - padding-top: 3.25rem; - } - - html.has-navbar-fixed-bottom-desktop, - body.has-navbar-fixed-bottom-desktop { - padding-bottom: 3.25rem; - } - - html.has-spaced-navbar-fixed-top, - body.has-spaced-navbar-fixed-top { - padding-top: 5.25rem; - } - - html.has-spaced-navbar-fixed-bottom, - body.has-spaced-navbar-fixed-bottom { - padding-bottom: 5.25rem; - } - - a.navbar-item.is-active, .navbar-item.active, - .navbar-link.is-active, - .navbar-link.active { - color: #0a0a0a; - } - - a.navbar-item.is-active:not(:focus):not(:hover), .navbar-item.active:not(:focus):not(:hover), - .navbar-link.is-active:not(:focus):not(:hover), - .navbar-link.active:not(:focus):not(:hover) { - background-color: transparent; - } - - .navbar-item.has-dropdown:focus .navbar-link, .navbar-item.has-dropdown:hover .navbar-link, .navbar-item.has-dropdown.is-active .navbar-link, .has-dropdown.active .navbar-link { - background-color: #fafafa; - } -} - -.hero.is-fullheight-with-navbar { - min-height: calc(100vh - 3.25rem); -} - -.pagination { - font-size: 1rem; - margin: -0.25rem; -} - - .pagination.is-small { - font-size: 0.75rem; - } - - .pagination.is-medium { - font-size: 1.25rem; - } - - .pagination.is-large { - font-size: 1.5rem; - } - - .pagination.is-rounded .pagination-previous, - .pagination.is-rounded .pagination-next { - padding-left: 1em; - padding-right: 1em; - border-radius: 290486px; - } - - .pagination.is-rounded .pagination-link { - border-radius: 290486px; - } - -.pagination, -.pagination-list { - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - text-align: center; -} - -.pagination-previous, -.pagination-next, -.pagination-link, -.pagination-ellipsis { - font-size: 1em; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - margin: 0.25rem; - padding-left: 0.5em; - padding-right: 0.5em; - text-align: center; -} - -.pagination-previous, -.pagination-next, -.pagination-link { - border-color: #dbdbdb; - color: #363636; - min-width: 2.5em; -} - - .pagination-previous:hover, - .pagination-next:hover, - .pagination-link:hover { - border-color: #b5b5b5; - color: #A00975; - } - - .pagination-previous:focus, - .pagination-next:focus, - .pagination-link:focus { - border-color: #3273dc; - } - - .pagination-previous:active, - .pagination-next:active, - .pagination-link:active { - -webkit-box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.2); - box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.2); - } - - .pagination-previous[disabled], - .pagination-next[disabled], - .pagination-link[disabled] { - background-color: #dbdbdb; - border-color: #dbdbdb; - -webkit-box-shadow: none; - box-shadow: none; - color: #7a7a7a; - opacity: 0.5; - } - -.pagination-previous, -.pagination-next { - padding-left: 0.75em; - padding-right: 0.75em; - white-space: nowrap; -} - -.pagination-link.is-current { - background-color: #378BBA; - border-color: #378BBA; - color: #fff; -} - -.pagination-ellipsis { - color: #b5b5b5; - pointer-events: none; -} - -.pagination-list { - -ms-flex-wrap: wrap; - flex-wrap: wrap; -} - - .pagination-list li { - list-style: none; - } - -@media screen and (max-width: 768px) { - .pagination { - -ms-flex-wrap: wrap; - flex-wrap: wrap; - } - - .pagination-previous, - .pagination-next { - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - -ms-flex-negative: 1; - flex-shrink: 1; - } - - .pagination-list li { - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - -ms-flex-negative: 1; - flex-shrink: 1; - } -} - -@media screen and (min-width: 769px), print { - .pagination-list { - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - -ms-flex-negative: 1; - flex-shrink: 1; - -webkit-box-pack: start; - -ms-flex-pack: start; - justify-content: flex-start; - -webkit-box-ordinal-group: 2; - -ms-flex-order: 1; - order: 1; - } - - .pagination-previous { - -webkit-box-ordinal-group: 3; - -ms-flex-order: 2; - order: 2; - } - - .pagination-next { - -webkit-box-ordinal-group: 4; - -ms-flex-order: 3; - order: 3; - } - - .pagination { - -webkit-box-pack: justify; - -ms-flex-pack: justify; - justify-content: space-between; - } - - .pagination.is-centered .pagination-previous { - -webkit-box-ordinal-group: 2; - -ms-flex-order: 1; - order: 1; - } - - .pagination.is-centered .pagination-list { - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-box-ordinal-group: 3; - -ms-flex-order: 2; - order: 2; - } - - .pagination.is-centered .pagination-next { - -webkit-box-ordinal-group: 4; - -ms-flex-order: 3; - order: 3; - } - - .pagination.is-right .pagination-previous { - -webkit-box-ordinal-group: 2; - -ms-flex-order: 1; - order: 1; - } - - .pagination.is-right .pagination-next { - -webkit-box-ordinal-group: 3; - -ms-flex-order: 2; - order: 2; - } - - .pagination.is-right .pagination-list { - -webkit-box-pack: end; - -ms-flex-pack: end; - justify-content: flex-end; - -webkit-box-ordinal-group: 4; - -ms-flex-order: 3; - order: 3; - } -} - -.panel { - border-radius: 6px; - -webkit-box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1), 0 0px 0 1px rgba(10, 10, 10, 0.02); - box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1), 0 0px 0 1px rgba(10, 10, 10, 0.02); - font-size: 1rem; -} - - .panel:not(:last-child) { - margin-bottom: 1.5rem; - } - - .panel.is-white .panel-heading { - background-color: white; - color: #0a0a0a; - } - - .panel.is-white .panel-tabs a.is-active, .panel.is-white .panel-tabs a.active { - border-bottom-color: white; - } - - .panel.is-white .panel-block.is-active .panel-icon, .panel.is-white .panel-block.active .panel-icon { - color: white; - } - - .panel.is-black .panel-heading { - background-color: #0a0a0a; - color: white; - } - - .panel.is-black .panel-tabs a.is-active, .panel.is-black .panel-tabs a.active { - border-bottom-color: #0a0a0a; - } - - .panel.is-black .panel-block.is-active .panel-icon, .panel.is-black .panel-block.active .panel-icon { - color: #0a0a0a; - } - - .panel.is-light .panel-heading { - background-color: whitesmoke; - color: rgba(0, 0, 0, 0.7); - } - - .panel.is-light .panel-tabs a.is-active, .panel.is-light .panel-tabs a.active { - border-bottom-color: whitesmoke; - } - - .panel.is-light .panel-block.is-active .panel-icon, .panel.is-light .panel-block.active .panel-icon { - color: whitesmoke; - } - - .panel.is-dark .panel-heading { - background-color: #200117; - color: #fff; - } - - .panel.is-dark .panel-tabs a.is-active, .panel.is-dark .panel-tabs a.active { - border-bottom-color: #200117; - } - - .panel.is-dark .panel-block.is-active .panel-icon, .panel.is-dark .panel-block.active .panel-icon { - color: #200117; - } - - .panel.is-primary .panel-heading { - background-color: #A00975; - color: #fff; - } - - .panel.is-primary .panel-tabs a.is-active, .panel.is-primary .panel-tabs a.active { - border-bottom-color: #A00975; - } - - .panel.is-primary .panel-block.is-active .panel-icon, .panel.is-primary .panel-block.active .panel-icon { - color: #A00975; - } - - .panel.is-link .panel-heading { - background-color: #378BBA; - color: #fff; - } - - .panel.is-link .panel-tabs a.is-active, .panel.is-link .panel-tabs a.active { - border-bottom-color: #378BBA; - } - - .panel.is-link .panel-block.is-active .panel-icon, .panel.is-link .panel-block.active .panel-icon { - color: #378BBA; - } - - .panel.is-info .panel-heading { - background-color: #3298dc; - color: #fff; - } - - .panel.is-info .panel-tabs a.is-active, .panel.is-info .panel-tabs a.active { - border-bottom-color: #3298dc; - } - - .panel.is-info .panel-block.is-active .panel-icon, .panel.is-info .panel-block.active .panel-icon { - color: #3298dc; - } - - .panel.is-success .panel-heading { - background-color: #48c774; - color: #fff; - } - - .panel.is-success .panel-tabs a.is-active, .panel.is-success .panel-tabs a.active { - border-bottom-color: #48c774; - } - - .panel.is-success .panel-block.is-active .panel-icon, .panel.is-success .panel-block.active .panel-icon { - color: #48c774; - } - - .panel.is-warning .panel-heading { - background-color: #ffdd57; - color: rgba(0, 0, 0, 0.7); - } - - .panel.is-warning .panel-tabs a.is-active, .panel.is-warning .panel-tabs a.active { - border-bottom-color: #ffdd57; - } - - .panel.is-warning .panel-block.is-active .panel-icon, .panel.is-warning .panel-block.active .panel-icon { - color: #ffdd57; - } - - .panel.is-danger .panel-heading { - background-color: #f14668; - color: #fff; - } - - .panel.is-danger .panel-tabs a.is-active, .panel.is-danger .panel-tabs a.active { - border-bottom-color: #f14668; - } - - .panel.is-danger .panel-block.is-active .panel-icon, .panel.is-danger .panel-block.active .panel-icon { - color: #f14668; - } - -.panel-tabs:not(:last-child), -.panel-block:not(:last-child) { - border-bottom: 1px solid #ededed; -} - -.panel-heading { - background-color: #ededed; - border-radius: 6px 6px 0 0; - color: #363636; - font-size: 1.25em; - font-weight: 700; - line-height: 1.25; - padding: 0.75em 1em; -} - -.panel-tabs { - -webkit-box-align: end; - -ms-flex-align: end; - align-items: flex-end; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - font-size: 0.875em; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; -} - - .panel-tabs a { - border-bottom: 1px solid #dbdbdb; - margin-bottom: -1px; - padding: 0.5em; - } - - .panel-tabs a.is-active, .panel-tabs a.active { - border-bottom-color: #4a4a4a; - color: #363636; - } - -.panel-list a { - color: #4a4a4a; -} - - .panel-list a:hover { - color: #378BBA; - } - -.panel-block { - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - color: #363636; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: start; - -ms-flex-pack: start; - justify-content: flex-start; - padding: 0.5em 0.75em; -} - - .panel-block input[type="checkbox"] { - margin-right: 0.75em; - } - - .panel-block > .control { - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - -ms-flex-negative: 1; - flex-shrink: 1; - width: 100%; - } - - .panel-block.is-wrapped { - -ms-flex-wrap: wrap; - flex-wrap: wrap; - } - - .panel-block.is-active, .panel-block.active { - border-left-color: #378BBA; - color: #363636; - } - - .panel-block.is-active .panel-icon, .panel-block.active .panel-icon { - color: #378BBA; - } - - .panel-block:last-child { - border-bottom-left-radius: 6px; - border-bottom-right-radius: 6px; - } - -a.panel-block, -label.panel-block { - cursor: pointer; -} - - a.panel-block:hover, - label.panel-block:hover { - background-color: whitesmoke; - } - -.panel-icon { - display: inline-block; - font-size: 14px; - height: 1em; - line-height: 1em; - text-align: center; - vertical-align: top; - width: 1em; - color: #7a7a7a; - margin-right: 0.75em; -} - - .panel-icon .fa { - font-size: inherit; - line-height: inherit; - } - -.tabs { - -webkit-overflow-scrolling: touch; - -webkit-box-align: stretch; - -ms-flex-align: stretch; - align-items: stretch; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - font-size: 1rem; - -webkit-box-pack: justify; - -ms-flex-pack: justify; - justify-content: space-between; - overflow: hidden; - overflow-x: auto; - white-space: nowrap; -} - - .tabs a { - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border-bottom-color: #dbdbdb; - border-bottom-style: solid; - border-bottom-width: 1px; - color: #4a4a4a; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - margin-bottom: -1px; - padding: 0.5em 1em; - vertical-align: top; - } - - .tabs a:hover { - border-bottom-color: #363636; - color: #363636; - } - - .tabs li { - display: block; - } - - .tabs li.is-active a, .tabs li.active a { - border-bottom-color: #378BBA; - color: #378BBA; - } - - .tabs ul { - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - border-bottom-color: #dbdbdb; - border-bottom-style: solid; - border-bottom-width: 1px; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - -ms-flex-negative: 0; - flex-shrink: 0; - -webkit-box-pack: start; - -ms-flex-pack: start; - justify-content: flex-start; - } - - .tabs ul.is-left { - padding-right: 0.75em; - } - - .tabs ul.is-center { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - padding-left: 0.75em; - padding-right: 0.75em; - } - - .tabs ul.is-right { - -webkit-box-pack: end; - -ms-flex-pack: end; - justify-content: flex-end; - padding-left: 0.75em; - } - - .tabs .icon:first-child { - margin-right: 0.5em; - } - - .tabs .icon:last-child { - margin-left: 0.5em; - } - - .tabs.is-centered ul { - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - } - - .tabs.is-right ul { - -webkit-box-pack: end; - -ms-flex-pack: end; - justify-content: flex-end; - } - - .tabs.is-boxed a { - border: 1px solid transparent; - border-radius: 4px 4px 0 0; - } - - .tabs.is-boxed a:hover { - background-color: whitesmoke; - border-bottom-color: #dbdbdb; - } - - .tabs.is-boxed li.is-active a, .tabs.is-boxed li.active a { - background-color: white; - border-color: #dbdbdb; - border-bottom-color: transparent !important; - } - - .tabs.is-fullwidth li { - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - -ms-flex-negative: 0; - flex-shrink: 0; - } - - .tabs.is-toggle a { - border-color: #dbdbdb; - border-style: solid; - border-width: 1px; - margin-bottom: 0; - position: relative; - } - - .tabs.is-toggle a:hover { - background-color: whitesmoke; - border-color: #b5b5b5; - z-index: 2; - } - - .tabs.is-toggle li + li { - margin-left: -1px; - } - - .tabs.is-toggle li:first-child a { - border-top-left-radius: 4px; - border-bottom-left-radius: 4px; - } - - .tabs.is-toggle li:last-child a { - border-top-right-radius: 4px; - border-bottom-right-radius: 4px; - } - - .tabs.is-toggle li.is-active a, .tabs.is-toggle li.active a { - background-color: #378BBA; - border-color: #378BBA; - color: #fff; - z-index: 1; - } - - .tabs.is-toggle ul { - border-bottom: none; - } - - .tabs.is-toggle.is-toggle-rounded li:first-child a { - border-bottom-left-radius: 290486px; - border-top-left-radius: 290486px; - padding-left: 1.25em; - } - - .tabs.is-toggle.is-toggle-rounded li:last-child a { - border-bottom-right-radius: 290486px; - border-top-right-radius: 290486px; - padding-right: 1.25em; - } - - .tabs.is-small { - font-size: 0.75rem; - } - - .tabs.is-medium { - font-size: 1.25rem; - } - - .tabs.is-large { - font-size: 1.5rem; - } - -/* Bulma Grid */ -.column { - display: block; - -ms-flex-preferred-size: 0; - flex-basis: 0; - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - -ms-flex-negative: 1; - flex-shrink: 1; - padding: 0.75rem; -} - -.columns.is-mobile > .column.is-narrow { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: unset; -} - -.columns.is-mobile > .column.is-full { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 100%; -} - -.columns.is-mobile > .column.is-three-quarters { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 75%; -} - -.columns.is-mobile > .column.is-two-thirds { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 66.6666%; -} - -.columns.is-mobile > .column.is-half { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 50%; -} - -.columns.is-mobile > .column.is-one-third { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 33.3333%; -} - -.columns.is-mobile > .column.is-one-quarter { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 25%; -} - -.columns.is-mobile > .column.is-one-fifth { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 20%; -} - -.columns.is-mobile > .column.is-two-fifths { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 40%; -} - -.columns.is-mobile > .column.is-three-fifths { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 60%; -} - -.columns.is-mobile > .column.is-four-fifths { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 80%; -} - -.columns.is-mobile > .column.is-offset-three-quarters { - margin-left: 75%; -} - -.columns.is-mobile > .column.is-offset-two-thirds { - margin-left: 66.6666%; -} - -.columns.is-mobile > .column.is-offset-half { - margin-left: 50%; -} - -.columns.is-mobile > .column.is-offset-one-third { - margin-left: 33.3333%; -} - -.columns.is-mobile > .column.is-offset-one-quarter { - margin-left: 25%; -} - -.columns.is-mobile > .column.is-offset-one-fifth { - margin-left: 20%; -} - -.columns.is-mobile > .column.is-offset-two-fifths { - margin-left: 40%; -} - -.columns.is-mobile > .column.is-offset-three-fifths { - margin-left: 60%; -} - -.columns.is-mobile > .column.is-offset-four-fifths { - margin-left: 80%; -} - -.columns.is-mobile > .column.is-0 { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 0%; -} - -.columns.is-mobile > .column.is-offset-0 { - margin-left: 0%; -} - -.columns.is-mobile > .column.is-1 { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 8.33333%; -} - -.columns.is-mobile > .column.is-offset-1 { - margin-left: 8.33333%; -} - -.columns.is-mobile > .column.is-2 { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 16.66667%; -} - -.columns.is-mobile > .column.is-offset-2 { - margin-left: 16.66667%; -} - -.columns.is-mobile > .column.is-3 { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 25%; -} - -.columns.is-mobile > .column.is-offset-3 { - margin-left: 25%; -} - -.columns.is-mobile > .column.is-4 { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 33.33333%; -} - -.columns.is-mobile > .column.is-offset-4 { - margin-left: 33.33333%; -} - -.columns.is-mobile > .column.is-5 { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 41.66667%; -} - -.columns.is-mobile > .column.is-offset-5 { - margin-left: 41.66667%; -} - -.columns.is-mobile > .column.is-6 { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 50%; -} - -.columns.is-mobile > .column.is-offset-6 { - margin-left: 50%; -} - -.columns.is-mobile > .column.is-7 { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 58.33333%; -} - -.columns.is-mobile > .column.is-offset-7 { - margin-left: 58.33333%; -} - -.columns.is-mobile > .column.is-8 { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 66.66667%; -} - -.columns.is-mobile > .column.is-offset-8 { - margin-left: 66.66667%; -} - -.columns.is-mobile > .column.is-9 { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 75%; -} - -.columns.is-mobile > .column.is-offset-9 { - margin-left: 75%; -} - -.columns.is-mobile > .column.is-10 { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 83.33333%; -} - -.columns.is-mobile > .column.is-offset-10 { - margin-left: 83.33333%; -} - -.columns.is-mobile > .column.is-11 { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 91.66667%; -} - -.columns.is-mobile > .column.is-offset-11 { - margin-left: 91.66667%; -} - -.columns.is-mobile > .column.is-12 { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 100%; -} - -.columns.is-mobile > .column.is-offset-12 { - margin-left: 100%; -} - -@media screen and (max-width: 768px) { - .column.is-narrow-mobile { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: unset; - } - - .column.is-full-mobile { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 100%; - } - - .column.is-three-quarters-mobile { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 75%; - } - - .column.is-two-thirds-mobile { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 66.6666%; - } - - .column.is-half-mobile { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 50%; - } - - .column.is-one-third-mobile { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 33.3333%; - } - - .column.is-one-quarter-mobile { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 25%; - } - - .column.is-one-fifth-mobile { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 20%; - } - - .column.is-two-fifths-mobile { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 40%; - } - - .column.is-three-fifths-mobile { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 60%; - } - - .column.is-four-fifths-mobile { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 80%; - } - - .column.is-offset-three-quarters-mobile { - margin-left: 75%; - } - - .column.is-offset-two-thirds-mobile { - margin-left: 66.6666%; - } - - .column.is-offset-half-mobile { - margin-left: 50%; - } - - .column.is-offset-one-third-mobile { - margin-left: 33.3333%; - } - - .column.is-offset-one-quarter-mobile { - margin-left: 25%; - } - - .column.is-offset-one-fifth-mobile { - margin-left: 20%; - } - - .column.is-offset-two-fifths-mobile { - margin-left: 40%; - } - - .column.is-offset-three-fifths-mobile { - margin-left: 60%; - } - - .column.is-offset-four-fifths-mobile { - margin-left: 80%; - } - - .column.is-0-mobile { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 0%; - } - - .column.is-offset-0-mobile { - margin-left: 0%; - } - - .column.is-1-mobile { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 8.33333%; - } - - .column.is-offset-1-mobile { - margin-left: 8.33333%; - } - - .column.is-2-mobile { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 16.66667%; - } - - .column.is-offset-2-mobile { - margin-left: 16.66667%; - } - - .column.is-3-mobile { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 25%; - } - - .column.is-offset-3-mobile { - margin-left: 25%; - } - - .column.is-4-mobile { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 33.33333%; - } - - .column.is-offset-4-mobile { - margin-left: 33.33333%; - } - - .column.is-5-mobile { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 41.66667%; - } - - .column.is-offset-5-mobile { - margin-left: 41.66667%; - } - - .column.is-6-mobile { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 50%; - } - - .column.is-offset-6-mobile { - margin-left: 50%; - } - - .column.is-7-mobile { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 58.33333%; - } - - .column.is-offset-7-mobile { - margin-left: 58.33333%; - } - - .column.is-8-mobile { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 66.66667%; - } - - .column.is-offset-8-mobile { - margin-left: 66.66667%; - } - - .column.is-9-mobile { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 75%; - } - - .column.is-offset-9-mobile { - margin-left: 75%; - } - - .column.is-10-mobile { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 83.33333%; - } - - .column.is-offset-10-mobile { - margin-left: 83.33333%; - } - - .column.is-11-mobile { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 91.66667%; - } - - .column.is-offset-11-mobile { - margin-left: 91.66667%; - } - - .column.is-12-mobile { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 100%; - } - - .column.is-offset-12-mobile { - margin-left: 100%; - } -} - -@media screen and (min-width: 769px), print { - .column.is-narrow, .column.is-narrow-tablet { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: unset; - } - - .column.is-full, .column.is-full-tablet { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 100%; - } - - .column.is-three-quarters, .column.is-three-quarters-tablet { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 75%; - } - - .column.is-two-thirds, .column.is-two-thirds-tablet { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 66.6666%; - } - - .column.is-half, .column.is-half-tablet { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 50%; - } - - .column.is-one-third, .column.is-one-third-tablet { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 33.3333%; - } - - .column.is-one-quarter, .column.is-one-quarter-tablet { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 25%; - } - - .column.is-one-fifth, .column.is-one-fifth-tablet { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 20%; - } - - .column.is-two-fifths, .column.is-two-fifths-tablet { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 40%; - } - - .column.is-three-fifths, .column.is-three-fifths-tablet { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 60%; - } - - .column.is-four-fifths, .column.is-four-fifths-tablet { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 80%; - } - - .column.is-offset-three-quarters, .column.is-offset-three-quarters-tablet { - margin-left: 75%; - } - - .column.is-offset-two-thirds, .column.is-offset-two-thirds-tablet { - margin-left: 66.6666%; - } - - .column.is-offset-half, .column.is-offset-half-tablet { - margin-left: 50%; - } - - .column.is-offset-one-third, .column.is-offset-one-third-tablet { - margin-left: 33.3333%; - } - - .column.is-offset-one-quarter, .column.is-offset-one-quarter-tablet { - margin-left: 25%; - } - - .column.is-offset-one-fifth, .column.is-offset-one-fifth-tablet { - margin-left: 20%; - } - - .column.is-offset-two-fifths, .column.is-offset-two-fifths-tablet { - margin-left: 40%; - } - - .column.is-offset-three-fifths, .column.is-offset-three-fifths-tablet { - margin-left: 60%; - } - - .column.is-offset-four-fifths, .column.is-offset-four-fifths-tablet { - margin-left: 80%; - } - - .column.is-0, .column.is-0-tablet { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 0%; - } - - .column.is-offset-0, .column.is-offset-0-tablet { - margin-left: 0%; - } - - .column.is-1, .column.is-1-tablet { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 8.33333%; - } - - .column.is-offset-1, .column.is-offset-1-tablet { - margin-left: 8.33333%; - } - - .column.is-2, .column.is-2-tablet { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 16.66667%; - } - - .column.is-offset-2, .column.is-offset-2-tablet { - margin-left: 16.66667%; - } - - .column.is-3, .column.is-3-tablet { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 25%; - } - - .column.is-offset-3, .column.is-offset-3-tablet { - margin-left: 25%; - } - - .column.is-4, .column.is-4-tablet { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 33.33333%; - } - - .column.is-offset-4, .column.is-offset-4-tablet { - margin-left: 33.33333%; - } - - .column.is-5, .column.is-5-tablet { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 41.66667%; - } - - .column.is-offset-5, .column.is-offset-5-tablet { - margin-left: 41.66667%; - } - - .column.is-6, .column.is-6-tablet { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 50%; - } - - .column.is-offset-6, .column.is-offset-6-tablet { - margin-left: 50%; - } - - .column.is-7, .column.is-7-tablet { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 58.33333%; - } - - .column.is-offset-7, .column.is-offset-7-tablet { - margin-left: 58.33333%; - } - - .column.is-8, .column.is-8-tablet { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 66.66667%; - } - - .column.is-offset-8, .column.is-offset-8-tablet { - margin-left: 66.66667%; - } - - .column.is-9, .column.is-9-tablet { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 75%; - } - - .column.is-offset-9, .column.is-offset-9-tablet { - margin-left: 75%; - } - - .column.is-10, .column.is-10-tablet { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 83.33333%; - } - - .column.is-offset-10, .column.is-offset-10-tablet { - margin-left: 83.33333%; - } - - .column.is-11, .column.is-11-tablet { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 91.66667%; - } - - .column.is-offset-11, .column.is-offset-11-tablet { - margin-left: 91.66667%; - } - - .column.is-12, .column.is-12-tablet { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 100%; - } - - .column.is-offset-12, .column.is-offset-12-tablet { - margin-left: 100%; - } -} - -@media screen and (max-width: 1023px) { - .column.is-narrow-touch { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: unset; - } - - .column.is-full-touch { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 100%; - } - - .column.is-three-quarters-touch { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 75%; - } - - .column.is-two-thirds-touch { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 66.6666%; - } - - .column.is-half-touch { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 50%; - } - - .column.is-one-third-touch { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 33.3333%; - } - - .column.is-one-quarter-touch { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 25%; - } - - .column.is-one-fifth-touch { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 20%; - } - - .column.is-two-fifths-touch { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 40%; - } - - .column.is-three-fifths-touch { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 60%; - } - - .column.is-four-fifths-touch { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 80%; - } - - .column.is-offset-three-quarters-touch { - margin-left: 75%; - } - - .column.is-offset-two-thirds-touch { - margin-left: 66.6666%; - } - - .column.is-offset-half-touch { - margin-left: 50%; - } - - .column.is-offset-one-third-touch { - margin-left: 33.3333%; - } - - .column.is-offset-one-quarter-touch { - margin-left: 25%; - } - - .column.is-offset-one-fifth-touch { - margin-left: 20%; - } - - .column.is-offset-two-fifths-touch { - margin-left: 40%; - } - - .column.is-offset-three-fifths-touch { - margin-left: 60%; - } - - .column.is-offset-four-fifths-touch { - margin-left: 80%; - } - - .column.is-0-touch { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 0%; - } - - .column.is-offset-0-touch { - margin-left: 0%; - } - - .column.is-1-touch { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 8.33333%; - } - - .column.is-offset-1-touch { - margin-left: 8.33333%; - } - - .column.is-2-touch { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 16.66667%; - } - - .column.is-offset-2-touch { - margin-left: 16.66667%; - } - - .column.is-3-touch { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 25%; - } - - .column.is-offset-3-touch { - margin-left: 25%; - } - - .column.is-4-touch { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 33.33333%; - } - - .column.is-offset-4-touch { - margin-left: 33.33333%; - } - - .column.is-5-touch { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 41.66667%; - } - - .column.is-offset-5-touch { - margin-left: 41.66667%; - } - - .column.is-6-touch { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 50%; - } - - .column.is-offset-6-touch { - margin-left: 50%; - } - - .column.is-7-touch { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 58.33333%; - } - - .column.is-offset-7-touch { - margin-left: 58.33333%; - } - - .column.is-8-touch { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 66.66667%; - } - - .column.is-offset-8-touch { - margin-left: 66.66667%; - } - - .column.is-9-touch { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 75%; - } - - .column.is-offset-9-touch { - margin-left: 75%; - } - - .column.is-10-touch { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 83.33333%; - } - - .column.is-offset-10-touch { - margin-left: 83.33333%; - } - - .column.is-11-touch { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 91.66667%; - } - - .column.is-offset-11-touch { - margin-left: 91.66667%; - } - - .column.is-12-touch { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 100%; - } - - .column.is-offset-12-touch { - margin-left: 100%; - } -} - -@media screen and (min-width: 1024px) { - .column.is-narrow-desktop { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: unset; - } - - .column.is-full-desktop { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 100%; - } - - .column.is-three-quarters-desktop { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 75%; - } - - .column.is-two-thirds-desktop { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 66.6666%; - } - - .column.is-half-desktop { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 50%; - } - - .column.is-one-third-desktop { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 33.3333%; - } - - .column.is-one-quarter-desktop { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 25%; - } - - .column.is-one-fifth-desktop { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 20%; - } - - .column.is-two-fifths-desktop { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 40%; - } - - .column.is-three-fifths-desktop { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 60%; - } - - .column.is-four-fifths-desktop { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 80%; - } - - .column.is-offset-three-quarters-desktop { - margin-left: 75%; - } - - .column.is-offset-two-thirds-desktop { - margin-left: 66.6666%; - } - - .column.is-offset-half-desktop { - margin-left: 50%; - } - - .column.is-offset-one-third-desktop { - margin-left: 33.3333%; - } - - .column.is-offset-one-quarter-desktop { - margin-left: 25%; - } - - .column.is-offset-one-fifth-desktop { - margin-left: 20%; - } - - .column.is-offset-two-fifths-desktop { - margin-left: 40%; - } - - .column.is-offset-three-fifths-desktop { - margin-left: 60%; - } - - .column.is-offset-four-fifths-desktop { - margin-left: 80%; - } - - .column.is-0-desktop { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 0%; - } - - .column.is-offset-0-desktop { - margin-left: 0%; - } - - .column.is-1-desktop { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 8.33333%; - } - - .column.is-offset-1-desktop { - margin-left: 8.33333%; - } - - .column.is-2-desktop { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 16.66667%; - } - - .column.is-offset-2-desktop { - margin-left: 16.66667%; - } - - .column.is-3-desktop { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 25%; - } - - .column.is-offset-3-desktop { - margin-left: 25%; - } - - .column.is-4-desktop { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 33.33333%; - } - - .column.is-offset-4-desktop { - margin-left: 33.33333%; - } - - .column.is-5-desktop { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 41.66667%; - } - - .column.is-offset-5-desktop { - margin-left: 41.66667%; - } - - .column.is-6-desktop { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 50%; - } - - .column.is-offset-6-desktop { - margin-left: 50%; - } - - .column.is-7-desktop { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 58.33333%; - } - - .column.is-offset-7-desktop { - margin-left: 58.33333%; - } - - .column.is-8-desktop { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 66.66667%; - } - - .column.is-offset-8-desktop { - margin-left: 66.66667%; - } - - .column.is-9-desktop { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 75%; - } - - .column.is-offset-9-desktop { - margin-left: 75%; - } - - .column.is-10-desktop { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 83.33333%; - } - - .column.is-offset-10-desktop { - margin-left: 83.33333%; - } - - .column.is-11-desktop { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 91.66667%; - } - - .column.is-offset-11-desktop { - margin-left: 91.66667%; - } - - .column.is-12-desktop { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 100%; - } - - .column.is-offset-12-desktop { - margin-left: 100%; - } -} - -@media screen and (min-width: 1216px) { - .column.is-narrow-widescreen { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: unset; - } - - .column.is-full-widescreen { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 100%; - } - - .column.is-three-quarters-widescreen { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 75%; - } - - .column.is-two-thirds-widescreen { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 66.6666%; - } - - .column.is-half-widescreen { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 50%; - } - - .column.is-one-third-widescreen { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 33.3333%; - } - - .column.is-one-quarter-widescreen { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 25%; - } - - .column.is-one-fifth-widescreen { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 20%; - } - - .column.is-two-fifths-widescreen { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 40%; - } - - .column.is-three-fifths-widescreen { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 60%; - } - - .column.is-four-fifths-widescreen { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 80%; - } - - .column.is-offset-three-quarters-widescreen { - margin-left: 75%; - } - - .column.is-offset-two-thirds-widescreen { - margin-left: 66.6666%; - } - - .column.is-offset-half-widescreen { - margin-left: 50%; - } - - .column.is-offset-one-third-widescreen { - margin-left: 33.3333%; - } - - .column.is-offset-one-quarter-widescreen { - margin-left: 25%; - } - - .column.is-offset-one-fifth-widescreen { - margin-left: 20%; - } - - .column.is-offset-two-fifths-widescreen { - margin-left: 40%; - } - - .column.is-offset-three-fifths-widescreen { - margin-left: 60%; - } - - .column.is-offset-four-fifths-widescreen { - margin-left: 80%; - } - - .column.is-0-widescreen { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 0%; - } - - .column.is-offset-0-widescreen { - margin-left: 0%; - } - - .column.is-1-widescreen { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 8.33333%; - } - - .column.is-offset-1-widescreen { - margin-left: 8.33333%; - } - - .column.is-2-widescreen { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 16.66667%; - } - - .column.is-offset-2-widescreen { - margin-left: 16.66667%; - } - - .column.is-3-widescreen { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 25%; - } - - .column.is-offset-3-widescreen { - margin-left: 25%; - } - - .column.is-4-widescreen { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 33.33333%; - } - - .column.is-offset-4-widescreen { - margin-left: 33.33333%; - } - - .column.is-5-widescreen { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 41.66667%; - } - - .column.is-offset-5-widescreen { - margin-left: 41.66667%; - } - - .column.is-6-widescreen { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 50%; - } - - .column.is-offset-6-widescreen { - margin-left: 50%; - } - - .column.is-7-widescreen { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 58.33333%; - } - - .column.is-offset-7-widescreen { - margin-left: 58.33333%; - } - - .column.is-8-widescreen { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 66.66667%; - } - - .column.is-offset-8-widescreen { - margin-left: 66.66667%; - } - - .column.is-9-widescreen { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 75%; - } - - .column.is-offset-9-widescreen { - margin-left: 75%; - } - - .column.is-10-widescreen { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 83.33333%; - } - - .column.is-offset-10-widescreen { - margin-left: 83.33333%; - } - - .column.is-11-widescreen { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 91.66667%; - } - - .column.is-offset-11-widescreen { - margin-left: 91.66667%; - } - - .column.is-12-widescreen { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 100%; - } - - .column.is-offset-12-widescreen { - margin-left: 100%; - } -} - -@media screen and (min-width: 1408px) { - .column.is-narrow-fullhd { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: unset; - } - - .column.is-full-fullhd { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 100%; - } - - .column.is-three-quarters-fullhd { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 75%; - } - - .column.is-two-thirds-fullhd { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 66.6666%; - } - - .column.is-half-fullhd { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 50%; - } - - .column.is-one-third-fullhd { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 33.3333%; - } - - .column.is-one-quarter-fullhd { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 25%; - } - - .column.is-one-fifth-fullhd { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 20%; - } - - .column.is-two-fifths-fullhd { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 40%; - } - - .column.is-three-fifths-fullhd { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 60%; - } - - .column.is-four-fifths-fullhd { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 80%; - } - - .column.is-offset-three-quarters-fullhd { - margin-left: 75%; - } - - .column.is-offset-two-thirds-fullhd { - margin-left: 66.6666%; - } - - .column.is-offset-half-fullhd { - margin-left: 50%; - } - - .column.is-offset-one-third-fullhd { - margin-left: 33.3333%; - } - - .column.is-offset-one-quarter-fullhd { - margin-left: 25%; - } - - .column.is-offset-one-fifth-fullhd { - margin-left: 20%; - } - - .column.is-offset-two-fifths-fullhd { - margin-left: 40%; - } - - .column.is-offset-three-fifths-fullhd { - margin-left: 60%; - } - - .column.is-offset-four-fifths-fullhd { - margin-left: 80%; - } - - .column.is-0-fullhd { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 0%; - } - - .column.is-offset-0-fullhd { - margin-left: 0%; - } - - .column.is-1-fullhd { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 8.33333%; - } - - .column.is-offset-1-fullhd { - margin-left: 8.33333%; - } - - .column.is-2-fullhd { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 16.66667%; - } - - .column.is-offset-2-fullhd { - margin-left: 16.66667%; - } - - .column.is-3-fullhd { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 25%; - } - - .column.is-offset-3-fullhd { - margin-left: 25%; - } - - .column.is-4-fullhd { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 33.33333%; - } - - .column.is-offset-4-fullhd { - margin-left: 33.33333%; - } - - .column.is-5-fullhd { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 41.66667%; - } - - .column.is-offset-5-fullhd { - margin-left: 41.66667%; - } - - .column.is-6-fullhd { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 50%; - } - - .column.is-offset-6-fullhd { - margin-left: 50%; - } - - .column.is-7-fullhd { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 58.33333%; - } - - .column.is-offset-7-fullhd { - margin-left: 58.33333%; - } - - .column.is-8-fullhd { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 66.66667%; - } - - .column.is-offset-8-fullhd { - margin-left: 66.66667%; - } - - .column.is-9-fullhd { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 75%; - } - - .column.is-offset-9-fullhd { - margin-left: 75%; - } - - .column.is-10-fullhd { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 83.33333%; - } - - .column.is-offset-10-fullhd { - margin-left: 83.33333%; - } - - .column.is-11-fullhd { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 91.66667%; - } - - .column.is-offset-11-fullhd { - margin-left: 91.66667%; - } - - .column.is-12-fullhd { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 100%; - } - - .column.is-offset-12-fullhd { - margin-left: 100%; - } -} - -.columns { - margin-left: -0.75rem; - margin-right: -0.75rem; - margin-top: -0.75rem; -} - - .columns:last-child { - margin-bottom: -0.75rem; - } - - .columns:not(:last-child) { - margin-bottom: calc(1.5rem - 0.75rem); - } - - .columns.is-centered { - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - } - - .columns.is-gapless { - margin-left: 0; - margin-right: 0; - margin-top: 0; - } - - .columns.is-gapless > .column { - margin: 0; - padding: 0 !important; - } - - .columns.is-gapless:not(:last-child) { - margin-bottom: 1.5rem; - } - - .columns.is-gapless:last-child { - margin-bottom: 0; - } - - .columns.is-mobile { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - } - - .columns.is-multiline { - -ms-flex-wrap: wrap; - flex-wrap: wrap; - } - - .columns.is-vcentered { - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - } - -@media screen and (min-width: 769px), print { - .columns:not(.is-desktop) { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - } -} - -@media screen and (min-width: 1024px) { - .columns.is-desktop { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - } -} - -.columns.is-variable { - --columnGap: 0.75rem; - margin-left: calc(-1 * var(--columnGap)); - margin-right: calc(-1 * var(--columnGap)); -} - - .columns.is-variable > .column { - padding-left: var(--columnGap); - padding-right: var(--columnGap); - } - - .columns.is-variable.is-0 { - --columnGap: 0rem; - } - -@media screen and (max-width: 768px) { - .columns.is-variable.is-0-mobile { - --columnGap: 0rem; - } -} - -@media screen and (min-width: 769px), print { - .columns.is-variable.is-0-tablet { - --columnGap: 0rem; - } -} - -@media screen and (min-width: 769px) and (max-width: 1023px) { - .columns.is-variable.is-0-tablet-only { - --columnGap: 0rem; - } -} - -@media screen and (max-width: 1023px) { - .columns.is-variable.is-0-touch { - --columnGap: 0rem; - } -} - -@media screen and (min-width: 1024px) { - .columns.is-variable.is-0-desktop { - --columnGap: 0rem; - } -} - -@media screen and (min-width: 1024px) and (max-width: 1215px) { - .columns.is-variable.is-0-desktop-only { - --columnGap: 0rem; - } -} - -@media screen and (min-width: 1216px) { - .columns.is-variable.is-0-widescreen { - --columnGap: 0rem; - } -} - -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .columns.is-variable.is-0-widescreen-only { - --columnGap: 0rem; - } -} - -@media screen and (min-width: 1408px) { - .columns.is-variable.is-0-fullhd { - --columnGap: 0rem; - } -} - -.columns.is-variable.is-1 { - --columnGap: 0.25rem; -} - -@media screen and (max-width: 768px) { - .columns.is-variable.is-1-mobile { - --columnGap: 0.25rem; - } -} - -@media screen and (min-width: 769px), print { - .columns.is-variable.is-1-tablet { - --columnGap: 0.25rem; - } -} - -@media screen and (min-width: 769px) and (max-width: 1023px) { - .columns.is-variable.is-1-tablet-only { - --columnGap: 0.25rem; - } -} - -@media screen and (max-width: 1023px) { - .columns.is-variable.is-1-touch { - --columnGap: 0.25rem; - } -} - -@media screen and (min-width: 1024px) { - .columns.is-variable.is-1-desktop { - --columnGap: 0.25rem; - } -} - -@media screen and (min-width: 1024px) and (max-width: 1215px) { - .columns.is-variable.is-1-desktop-only { - --columnGap: 0.25rem; - } -} - -@media screen and (min-width: 1216px) { - .columns.is-variable.is-1-widescreen { - --columnGap: 0.25rem; - } -} - -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .columns.is-variable.is-1-widescreen-only { - --columnGap: 0.25rem; - } -} - -@media screen and (min-width: 1408px) { - .columns.is-variable.is-1-fullhd { - --columnGap: 0.25rem; - } -} - -.columns.is-variable.is-2 { - --columnGap: 0.5rem; -} - -@media screen and (max-width: 768px) { - .columns.is-variable.is-2-mobile { - --columnGap: 0.5rem; - } -} - -@media screen and (min-width: 769px), print { - .columns.is-variable.is-2-tablet { - --columnGap: 0.5rem; - } -} - -@media screen and (min-width: 769px) and (max-width: 1023px) { - .columns.is-variable.is-2-tablet-only { - --columnGap: 0.5rem; - } -} - -@media screen and (max-width: 1023px) { - .columns.is-variable.is-2-touch { - --columnGap: 0.5rem; - } -} - -@media screen and (min-width: 1024px) { - .columns.is-variable.is-2-desktop { - --columnGap: 0.5rem; - } -} - -@media screen and (min-width: 1024px) and (max-width: 1215px) { - .columns.is-variable.is-2-desktop-only { - --columnGap: 0.5rem; - } -} - -@media screen and (min-width: 1216px) { - .columns.is-variable.is-2-widescreen { - --columnGap: 0.5rem; - } -} - -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .columns.is-variable.is-2-widescreen-only { - --columnGap: 0.5rem; - } -} - -@media screen and (min-width: 1408px) { - .columns.is-variable.is-2-fullhd { - --columnGap: 0.5rem; - } -} - -.columns.is-variable.is-3 { - --columnGap: 0.75rem; -} - -@media screen and (max-width: 768px) { - .columns.is-variable.is-3-mobile { - --columnGap: 0.75rem; - } -} - -@media screen and (min-width: 769px), print { - .columns.is-variable.is-3-tablet { - --columnGap: 0.75rem; - } -} - -@media screen and (min-width: 769px) and (max-width: 1023px) { - .columns.is-variable.is-3-tablet-only { - --columnGap: 0.75rem; - } -} - -@media screen and (max-width: 1023px) { - .columns.is-variable.is-3-touch { - --columnGap: 0.75rem; - } -} - -@media screen and (min-width: 1024px) { - .columns.is-variable.is-3-desktop { - --columnGap: 0.75rem; - } -} - -@media screen and (min-width: 1024px) and (max-width: 1215px) { - .columns.is-variable.is-3-desktop-only { - --columnGap: 0.75rem; - } -} - -@media screen and (min-width: 1216px) { - .columns.is-variable.is-3-widescreen { - --columnGap: 0.75rem; - } -} - -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .columns.is-variable.is-3-widescreen-only { - --columnGap: 0.75rem; - } -} - -@media screen and (min-width: 1408px) { - .columns.is-variable.is-3-fullhd { - --columnGap: 0.75rem; - } -} - -.columns.is-variable.is-4 { - --columnGap: 1rem; -} - -@media screen and (max-width: 768px) { - .columns.is-variable.is-4-mobile { - --columnGap: 1rem; - } -} - -@media screen and (min-width: 769px), print { - .columns.is-variable.is-4-tablet { - --columnGap: 1rem; - } -} - -@media screen and (min-width: 769px) and (max-width: 1023px) { - .columns.is-variable.is-4-tablet-only { - --columnGap: 1rem; - } -} - -@media screen and (max-width: 1023px) { - .columns.is-variable.is-4-touch { - --columnGap: 1rem; - } -} - -@media screen and (min-width: 1024px) { - .columns.is-variable.is-4-desktop { - --columnGap: 1rem; - } -} - -@media screen and (min-width: 1024px) and (max-width: 1215px) { - .columns.is-variable.is-4-desktop-only { - --columnGap: 1rem; - } -} - -@media screen and (min-width: 1216px) { - .columns.is-variable.is-4-widescreen { - --columnGap: 1rem; - } -} - -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .columns.is-variable.is-4-widescreen-only { - --columnGap: 1rem; - } -} - -@media screen and (min-width: 1408px) { - .columns.is-variable.is-4-fullhd { - --columnGap: 1rem; - } -} - -.columns.is-variable.is-5 { - --columnGap: 1.25rem; -} - -@media screen and (max-width: 768px) { - .columns.is-variable.is-5-mobile { - --columnGap: 1.25rem; - } -} - -@media screen and (min-width: 769px), print { - .columns.is-variable.is-5-tablet { - --columnGap: 1.25rem; - } -} - -@media screen and (min-width: 769px) and (max-width: 1023px) { - .columns.is-variable.is-5-tablet-only { - --columnGap: 1.25rem; - } -} - -@media screen and (max-width: 1023px) { - .columns.is-variable.is-5-touch { - --columnGap: 1.25rem; - } -} - -@media screen and (min-width: 1024px) { - .columns.is-variable.is-5-desktop { - --columnGap: 1.25rem; - } -} - -@media screen and (min-width: 1024px) and (max-width: 1215px) { - .columns.is-variable.is-5-desktop-only { - --columnGap: 1.25rem; - } -} - -@media screen and (min-width: 1216px) { - .columns.is-variable.is-5-widescreen { - --columnGap: 1.25rem; - } -} - -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .columns.is-variable.is-5-widescreen-only { - --columnGap: 1.25rem; - } -} - -@media screen and (min-width: 1408px) { - .columns.is-variable.is-5-fullhd { - --columnGap: 1.25rem; - } -} - -.columns.is-variable.is-6 { - --columnGap: 1.5rem; -} - -@media screen and (max-width: 768px) { - .columns.is-variable.is-6-mobile { - --columnGap: 1.5rem; - } -} - -@media screen and (min-width: 769px), print { - .columns.is-variable.is-6-tablet { - --columnGap: 1.5rem; - } -} - -@media screen and (min-width: 769px) and (max-width: 1023px) { - .columns.is-variable.is-6-tablet-only { - --columnGap: 1.5rem; - } -} - -@media screen and (max-width: 1023px) { - .columns.is-variable.is-6-touch { - --columnGap: 1.5rem; - } -} - -@media screen and (min-width: 1024px) { - .columns.is-variable.is-6-desktop { - --columnGap: 1.5rem; - } -} - -@media screen and (min-width: 1024px) and (max-width: 1215px) { - .columns.is-variable.is-6-desktop-only { - --columnGap: 1.5rem; - } -} - -@media screen and (min-width: 1216px) { - .columns.is-variable.is-6-widescreen { - --columnGap: 1.5rem; - } -} - -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .columns.is-variable.is-6-widescreen-only { - --columnGap: 1.5rem; - } -} - -@media screen and (min-width: 1408px) { - .columns.is-variable.is-6-fullhd { - --columnGap: 1.5rem; - } -} - -.columns.is-variable.is-7 { - --columnGap: 1.75rem; -} - -@media screen and (max-width: 768px) { - .columns.is-variable.is-7-mobile { - --columnGap: 1.75rem; - } -} - -@media screen and (min-width: 769px), print { - .columns.is-variable.is-7-tablet { - --columnGap: 1.75rem; - } -} - -@media screen and (min-width: 769px) and (max-width: 1023px) { - .columns.is-variable.is-7-tablet-only { - --columnGap: 1.75rem; - } -} - -@media screen and (max-width: 1023px) { - .columns.is-variable.is-7-touch { - --columnGap: 1.75rem; - } -} - -@media screen and (min-width: 1024px) { - .columns.is-variable.is-7-desktop { - --columnGap: 1.75rem; - } -} - -@media screen and (min-width: 1024px) and (max-width: 1215px) { - .columns.is-variable.is-7-desktop-only { - --columnGap: 1.75rem; - } -} - -@media screen and (min-width: 1216px) { - .columns.is-variable.is-7-widescreen { - --columnGap: 1.75rem; - } -} - -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .columns.is-variable.is-7-widescreen-only { - --columnGap: 1.75rem; - } -} - -@media screen and (min-width: 1408px) { - .columns.is-variable.is-7-fullhd { - --columnGap: 1.75rem; - } -} - -.columns.is-variable.is-8 { - --columnGap: 2rem; -} - -@media screen and (max-width: 768px) { - .columns.is-variable.is-8-mobile { - --columnGap: 2rem; - } -} - -@media screen and (min-width: 769px), print { - .columns.is-variable.is-8-tablet { - --columnGap: 2rem; - } -} - -@media screen and (min-width: 769px) and (max-width: 1023px) { - .columns.is-variable.is-8-tablet-only { - --columnGap: 2rem; - } -} - -@media screen and (max-width: 1023px) { - .columns.is-variable.is-8-touch { - --columnGap: 2rem; - } -} - -@media screen and (min-width: 1024px) { - .columns.is-variable.is-8-desktop { - --columnGap: 2rem; - } -} - -@media screen and (min-width: 1024px) and (max-width: 1215px) { - .columns.is-variable.is-8-desktop-only { - --columnGap: 2rem; - } -} - -@media screen and (min-width: 1216px) { - .columns.is-variable.is-8-widescreen { - --columnGap: 2rem; - } -} - -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .columns.is-variable.is-8-widescreen-only { - --columnGap: 2rem; - } -} - -@media screen and (min-width: 1408px) { - .columns.is-variable.is-8-fullhd { - --columnGap: 2rem; - } -} - -.tile { - -webkit-box-align: stretch; - -ms-flex-align: stretch; - align-items: stretch; - display: block; - -ms-flex-preferred-size: 0; - flex-basis: 0; - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - -ms-flex-negative: 1; - flex-shrink: 1; - min-height: -webkit-min-content; - min-height: -moz-min-content; - min-height: min-content; -} - - .tile.is-ancestor { - margin-left: -0.75rem; - margin-right: -0.75rem; - margin-top: -0.75rem; - } - - .tile.is-ancestor:last-child { - margin-bottom: -0.75rem; - } - - .tile.is-ancestor:not(:last-child) { - margin-bottom: 0.75rem; - } - - .tile.is-child { - margin: 0 !important; - } - - .tile.is-parent { - padding: 0.75rem; - } - - .tile.is-vertical { - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - } - - .tile.is-vertical > .tile.is-child:not(:last-child) { - margin-bottom: 1.5rem !important; - } - -@media screen and (min-width: 769px), print { - .tile:not(.is-child) { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - } - - .tile.is-1 { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 8.33333%; - } - - .tile.is-2 { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 16.66667%; - } - - .tile.is-3 { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 25%; - } - - .tile.is-4 { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 33.33333%; - } - - .tile.is-5 { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 41.66667%; - } - - .tile.is-6 { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 50%; - } - - .tile.is-7 { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 58.33333%; - } - - .tile.is-8 { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 66.66667%; - } - - .tile.is-9 { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 75%; - } - - .tile.is-10 { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 83.33333%; - } - - .tile.is-11 { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 91.66667%; - } - - .tile.is-12 { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - width: 100%; - } -} -/* Bulma Helpers */ -.has-text-white { - color: white !important; -} - -a.has-text-white:hover, a.has-text-white:focus { - color: #e6e6e6 !important; -} - -.has-background-white { - background-color: white !important; -} - -.has-text-black { - color: #0a0a0a !important; -} - -a.has-text-black:hover, a.has-text-black:focus { - color: black !important; -} - -.has-background-black { - background-color: #0a0a0a !important; -} - -.has-text-light { - color: whitesmoke !important; -} - -a.has-text-light:hover, a.has-text-light:focus { - color: #dbdbdb !important; -} - -.has-background-light { - background-color: whitesmoke !important; -} - -.has-text-dark { - color: #200117 !important; -} - -a.has-text-dark:hover, a.has-text-dark:focus { - color: black !important; -} - -.has-background-dark { - background-color: #200117 !important; -} - -.has-text-primary { - color: #A00975 !important; -} - -a.has-text-primary:hover, a.has-text-primary:focus { - color: #700652 !important; -} - -.has-background-primary { - background-color: #A00975 !important; -} - -.has-text-primary-light { - color: #feecf9 !important; -} - -a.has-text-primary-light:hover, a.has-text-primary-light:focus { - color: #fbbbe9 !important; -} - -.has-background-primary-light { - background-color: #feecf9 !important; -} - -.has-text-primary-dark { - color: #f212b2 !important; -} - -a.has-text-primary-dark:hover, a.has-text-primary-dark:focus { - color: #f443c2 !important; -} - -.has-background-primary-dark { - background-color: #f212b2 !important; -} - -.has-text-link { - color: #378BBA !important; -} - -a.has-text-link:hover, a.has-text-link:focus { - color: #2b6e93 !important; -} - -.has-background-link { - background-color: #378BBA !important; -} - -.has-text-link-light { - color: #eff6fa !important; -} - -a.has-text-link-light:hover, a.has-text-link-light:focus { - color: #c8e1ef !important; -} - -.has-background-link-light { - background-color: #eff6fa !important; -} - -.has-text-link-dark { - color: #317ca5 !important; -} - -a.has-text-link-dark:hover, a.has-text-link-dark:focus { - color: #4297c7 !important; -} - -.has-background-link-dark { - background-color: #317ca5 !important; -} - -.has-text-info { - color: #3298dc !important; -} - -a.has-text-info:hover, a.has-text-info:focus { - color: #207dbc !important; -} - -.has-background-info { - background-color: #3298dc !important; -} - -.has-text-info-light { - color: #eef6fc !important; -} - -a.has-text-info-light:hover, a.has-text-info-light:focus { - color: #c2e0f5 !important; -} - -.has-background-info-light { - background-color: #eef6fc !important; -} - -.has-text-info-dark { - color: #1d72aa !important; -} - -a.has-text-info-dark:hover, a.has-text-info-dark:focus { - color: #248fd6 !important; -} - -.has-background-info-dark { - background-color: #1d72aa !important; -} - -.has-text-success { - color: #48c774 !important; -} - -a.has-text-success:hover, a.has-text-success:focus { - color: #34a85c !important; -} - -.has-background-success { - background-color: #48c774 !important; -} - -.has-text-success-light { - color: #effaf3 !important; -} - -a.has-text-success-light:hover, a.has-text-success-light:focus { - color: #c8eed6 !important; -} - -.has-background-success-light { - background-color: #effaf3 !important; -} - -.has-text-success-dark { - color: #257942 !important; -} - -a.has-text-success-dark:hover, a.has-text-success-dark:focus { - color: #31a058 !important; -} - -.has-background-success-dark { - background-color: #257942 !important; -} - -.has-text-warning { - color: #ffdd57 !important; -} - -a.has-text-warning:hover, a.has-text-warning:focus { - color: #ffd324 !important; -} - -.has-background-warning { - background-color: #ffdd57 !important; -} - -.has-text-warning-light { - color: #fffbeb !important; -} - -a.has-text-warning-light:hover, a.has-text-warning-light:focus { - color: #fff1b8 !important; -} - -.has-background-warning-light { - background-color: #fffbeb !important; -} - -.has-text-warning-dark { - color: #947600 !important; -} - -a.has-text-warning-dark:hover, a.has-text-warning-dark:focus { - color: #c79f00 !important; -} - -.has-background-warning-dark { - background-color: #947600 !important; -} - -.has-text-danger { - color: #f14668 !important; -} - -a.has-text-danger:hover, a.has-text-danger:focus { - color: #ee1742 !important; -} - -.has-background-danger { - background-color: #f14668 !important; -} - -.has-text-danger-light { - color: #feecf0 !important; -} - -a.has-text-danger-light:hover, a.has-text-danger-light:focus { - color: #fabdc9 !important; -} - -.has-background-danger-light { - background-color: #feecf0 !important; -} - -.has-text-danger-dark { - color: #cc0f35 !important; -} - -a.has-text-danger-dark:hover, a.has-text-danger-dark:focus { - color: #ee2049 !important; -} - -.has-background-danger-dark { - background-color: #cc0f35 !important; -} - -.has-text-black-bis { - color: #121212 !important; -} - -.has-background-black-bis { - background-color: #121212 !important; -} - -.has-text-black-ter { - color: #242424 !important; -} - -.has-background-black-ter { - background-color: #242424 !important; -} - -.has-text-grey-darker { - color: #363636 !important; -} - -.has-background-grey-darker { - background-color: #363636 !important; -} - -.has-text-grey-dark { - color: #4a4a4a !important; -} - -.has-background-grey-dark { - background-color: #4a4a4a !important; -} - -.has-text-grey { - color: #7a7a7a !important; -} - -.has-background-grey { - background-color: #7a7a7a !important; -} - -.has-text-grey-light { - color: #b5b5b5 !important; -} - -.has-background-grey-light { - background-color: #b5b5b5 !important; -} - -.has-text-grey-lighter { - color: #dbdbdb !important; -} - -.has-background-grey-lighter { - background-color: #dbdbdb !important; -} - -.has-text-white-ter { - color: whitesmoke !important; -} - -.has-background-white-ter { - background-color: whitesmoke !important; -} - -.has-text-white-bis { - color: #fafafa !important; -} - -.has-background-white-bis { - background-color: #fafafa !important; -} - -.is-flex-direction-row { - -webkit-box-orient: horizontal !important; - -webkit-box-direction: normal !important; - -ms-flex-direction: row !important; - flex-direction: row !important; -} - -.is-flex-direction-row-reverse { - -webkit-box-orient: horizontal !important; - -webkit-box-direction: reverse !important; - -ms-flex-direction: row-reverse !important; - flex-direction: row-reverse !important; -} - -.is-flex-direction-column { - -webkit-box-orient: vertical !important; - -webkit-box-direction: normal !important; - -ms-flex-direction: column !important; - flex-direction: column !important; -} - -.is-flex-direction-column-reverse { - -webkit-box-orient: vertical !important; - -webkit-box-direction: reverse !important; - -ms-flex-direction: column-reverse !important; - flex-direction: column-reverse !important; -} - -.is-flex-wrap-nowrap { - -ms-flex-wrap: nowrap !important; - flex-wrap: nowrap !important; -} - -.is-flex-wrap-wrap { - -ms-flex-wrap: wrap !important; - flex-wrap: wrap !important; -} - -.is-flex-wrap-wrap-reverse { - -ms-flex-wrap: wrap-reverse !important; - flex-wrap: wrap-reverse !important; -} - -.is-justify-content-flex-start { - -webkit-box-pack: start !important; - -ms-flex-pack: start !important; - justify-content: flex-start !important; -} - -.is-justify-content-flex-end { - -webkit-box-pack: end !important; - -ms-flex-pack: end !important; - justify-content: flex-end !important; -} - -.is-justify-content-center { - -webkit-box-pack: center !important; - -ms-flex-pack: center !important; - justify-content: center !important; -} - -.is-justify-content-space-between { - -webkit-box-pack: justify !important; - -ms-flex-pack: justify !important; - justify-content: space-between !important; -} - -.is-justify-content-space-around { - -ms-flex-pack: distribute !important; - justify-content: space-around !important; -} - -.is-justify-content-space-evenly { - -webkit-box-pack: space-evenly !important; - -ms-flex-pack: space-evenly !important; - justify-content: space-evenly !important; -} - -.is-justify-content-start { - -webkit-box-pack: start !important; - -ms-flex-pack: start !important; - justify-content: start !important; -} - -.is-justify-content-end { - -webkit-box-pack: end !important; - -ms-flex-pack: end !important; - justify-content: end !important; -} - -.is-justify-content-left { - -webkit-box-pack: left !important; - -ms-flex-pack: left !important; - justify-content: left !important; -} - -.is-justify-content-right { - -webkit-box-pack: right !important; - -ms-flex-pack: right !important; - justify-content: right !important; -} - -.is-align-content-flex-start { - -ms-flex-line-pack: start !important; - align-content: flex-start !important; -} - -.is-align-content-flex-end { - -ms-flex-line-pack: end !important; - align-content: flex-end !important; -} - -.is-align-content-center { - -ms-flex-line-pack: center !important; - align-content: center !important; -} - -.is-align-content-space-between { - -ms-flex-line-pack: justify !important; - align-content: space-between !important; -} - -.is-align-content-space-around { - -ms-flex-line-pack: distribute !important; - align-content: space-around !important; -} - -.is-align-content-space-evenly { - -ms-flex-line-pack: space-evenly !important; - align-content: space-evenly !important; -} - -.is-align-content-stretch { - -ms-flex-line-pack: stretch !important; - align-content: stretch !important; -} - -.is-align-content-start { - -ms-flex-line-pack: start !important; - align-content: start !important; -} - -.is-align-content-end { - -ms-flex-line-pack: end !important; - align-content: end !important; -} - -.is-align-content-baseline { - -ms-flex-line-pack: baseline !important; - align-content: baseline !important; -} - -.is-align-items-stretch { - -webkit-box-align: stretch !important; - -ms-flex-align: stretch !important; - align-items: stretch !important; -} - -.is-align-items-flex-start { - -webkit-box-align: start !important; - -ms-flex-align: start !important; - align-items: flex-start !important; -} - -.is-align-items-flex-end { - -webkit-box-align: end !important; - -ms-flex-align: end !important; - align-items: flex-end !important; -} - -.is-align-items-center { - -webkit-box-align: center !important; - -ms-flex-align: center !important; - align-items: center !important; -} - -.is-align-items-baseline { - -webkit-box-align: baseline !important; - -ms-flex-align: baseline !important; - align-items: baseline !important; -} - -.is-align-items-start { - -webkit-box-align: start !important; - -ms-flex-align: start !important; - align-items: start !important; -} - -.is-align-items-end { - -webkit-box-align: end !important; - -ms-flex-align: end !important; - align-items: end !important; -} - -.is-align-items-self-start { - -webkit-box-align: self-start !important; - -ms-flex-align: self-start !important; - align-items: self-start !important; -} - -.is-align-items-self-end { - -webkit-box-align: self-end !important; - -ms-flex-align: self-end !important; - align-items: self-end !important; -} - -.is-align-self-auto { - -ms-flex-item-align: auto !important; - align-self: auto !important; -} - -.is-align-self-flex-start { - -ms-flex-item-align: start !important; - align-self: flex-start !important; -} - -.is-align-self-flex-end { - -ms-flex-item-align: end !important; - align-self: flex-end !important; -} - -.is-align-self-center { - -ms-flex-item-align: center !important; - align-self: center !important; -} - -.is-align-self-baseline { - -ms-flex-item-align: baseline !important; - align-self: baseline !important; -} - -.is-align-self-stretch { - -ms-flex-item-align: stretch !important; - align-self: stretch !important; -} - -.is-flex-grow-0 { - -webkit-box-flex: 0 !important; - -ms-flex-positive: 0 !important; - flex-grow: 0 !important; -} - -.is-flex-grow-1 { - -webkit-box-flex: 1 !important; - -ms-flex-positive: 1 !important; - flex-grow: 1 !important; -} - -.is-flex-grow-2 { - -webkit-box-flex: 2 !important; - -ms-flex-positive: 2 !important; - flex-grow: 2 !important; -} - -.is-flex-grow-3 { - -webkit-box-flex: 3 !important; - -ms-flex-positive: 3 !important; - flex-grow: 3 !important; -} - -.is-flex-grow-4 { - -webkit-box-flex: 4 !important; - -ms-flex-positive: 4 !important; - flex-grow: 4 !important; -} - -.is-flex-grow-5 { - -webkit-box-flex: 5 !important; - -ms-flex-positive: 5 !important; - flex-grow: 5 !important; -} - -.is-flex-shrink-0 { - -ms-flex-negative: 0 !important; - flex-shrink: 0 !important; -} - -.is-flex-shrink-1 { - -ms-flex-negative: 1 !important; - flex-shrink: 1 !important; -} - -.is-flex-shrink-2 { - -ms-flex-negative: 2 !important; - flex-shrink: 2 !important; -} - -.is-flex-shrink-3 { - -ms-flex-negative: 3 !important; - flex-shrink: 3 !important; -} - -.is-flex-shrink-4 { - -ms-flex-negative: 4 !important; - flex-shrink: 4 !important; -} - -.is-flex-shrink-5 { - -ms-flex-negative: 5 !important; - flex-shrink: 5 !important; -} - -.is-clearfix::after { - clear: both; - content: " "; - display: table; -} - -.is-pulled-left { - float: left !important; -} - -.is-pulled-right { - float: right !important; -} - -.is-radiusless { - border-radius: 0 !important; -} - -.is-shadowless { - -webkit-box-shadow: none !important; - box-shadow: none !important; -} - -.is-clickable { - cursor: pointer !important; - pointer-events: all !important; -} - -.is-clipped { - overflow: hidden !important; -} - -.is-relative { - position: relative !important; -} - -.is-marginless { - margin: 0 !important; -} - -.is-paddingless { - padding: 0 !important; -} - -.m-0 { - margin: 0 !important; -} - -.mt-0 { - margin-top: 0 !important; -} - -.mr-0 { - margin-right: 0 !important; -} - -.mb-0 { - margin-bottom: 0 !important; -} - -.ml-0 { - margin-left: 0 !important; -} - -.mx-0 { - margin-left: 0 !important; - margin-right: 0 !important; -} - -.my-0 { - margin-top: 0 !important; - margin-bottom: 0 !important; -} - -.m-1 { - margin: 0.25rem !important; -} - -.mt-1 { - margin-top: 0.25rem !important; -} - -.mr-1 { - margin-right: 0.25rem !important; -} - -.mb-1 { - margin-bottom: 0.25rem !important; -} - -.ml-1 { - margin-left: 0.25rem !important; -} - -.mx-1 { - margin-left: 0.25rem !important; - margin-right: 0.25rem !important; -} - -.my-1 { - margin-top: 0.25rem !important; - margin-bottom: 0.25rem !important; -} - -.m-2 { - margin: 0.5rem !important; -} - -.mt-2 { - margin-top: 0.5rem !important; -} - -.mr-2 { - margin-right: 0.5rem !important; -} - -.mb-2 { - margin-bottom: 0.5rem !important; -} - -.ml-2 { - margin-left: 0.5rem !important; -} - -.mx-2 { - margin-left: 0.5rem !important; - margin-right: 0.5rem !important; -} - -.my-2, #fsdocs-content p { - margin-top: 0.5rem !important; - margin-bottom: 0.5rem !important; -} - -.m-3 { - margin: 0.75rem !important; -} - -.mt-3 { - margin-top: 0.75rem !important; -} - -.mr-3 { - margin-right: 0.75rem !important; -} - -.mb-3 { - margin-bottom: 0.75rem !important; -} - -.ml-3 { - margin-left: 0.75rem !important; -} - -.mx-3 { - margin-left: 0.75rem !important; - margin-right: 0.75rem !important; -} - -.my-3 { - margin-top: 0.75rem !important; - margin-bottom: 0.75rem !important; -} - -.m-4 { - margin: 1rem !important; -} - -.mt-4 { - margin-top: 1rem !important; -} - -.mr-4 { - margin-right: 1rem !important; -} - -.mb-4 { - margin-bottom: 1rem !important; -} - -.ml-4 { - margin-left: 1rem !important; -} - -.mx-4 { - margin-left: 1rem !important; - margin-right: 1rem !important; -} - -.my-4 { - margin-top: 1rem !important; - margin-bottom: 1rem !important; -} - -.m-5 { - margin: 1.5rem !important; -} - -.mt-5 { - margin-top: 1.5rem !important; -} - -.mr-5 { - margin-right: 1.5rem !important; -} - -.mb-5 { - margin-bottom: 1.5rem !important; -} - -.ml-5 { - margin-left: 1.5rem !important; -} - -.mx-5 { - margin-left: 1.5rem !important; - margin-right: 1.5rem !important; -} - -.my-5 { - margin-top: 1.5rem !important; - margin-bottom: 1.5rem !important; -} - -.m-6 { - margin: 3rem !important; -} - -.mt-6 { - margin-top: 3rem !important; -} - -.mr-6 { - margin-right: 3rem !important; -} - -.mb-6 { - margin-bottom: 3rem !important; -} - -.ml-6 { - margin-left: 3rem !important; -} - -.mx-6 { - margin-left: 3rem !important; - margin-right: 3rem !important; -} - -.my-6 { - margin-top: 3rem !important; - margin-bottom: 3rem !important; -} - -.p-0 { - padding: 0 !important; -} - -.pt-0 { - padding-top: 0 !important; -} - -.pr-0 { - padding-right: 0 !important; -} - -.pb-0 { - padding-bottom: 0 !important; -} - -.pl-0 { - padding-left: 0 !important; -} - -.px-0 { - padding-left: 0 !important; - padding-right: 0 !important; -} - -.py-0 { - padding-top: 0 !important; - padding-bottom: 0 !important; -} - -.p-1 { - padding: 0.25rem !important; -} - -.pt-1 { - padding-top: 0.25rem !important; -} - -.pr-1 { - padding-right: 0.25rem !important; -} - -.pb-1 { - padding-bottom: 0.25rem !important; -} - -.pl-1 { - padding-left: 0.25rem !important; -} - -.px-1 { - padding-left: 0.25rem !important; - padding-right: 0.25rem !important; -} - -.py-1 { - padding-top: 0.25rem !important; - padding-bottom: 0.25rem !important; -} - -.p-2 { - padding: 0.5rem !important; -} - -.pt-2 { - padding-top: 0.5rem !important; -} - -.pr-2 { - padding-right: 0.5rem !important; -} - -.pb-2 { - padding-bottom: 0.5rem !important; -} - -.pl-2 { - padding-left: 0.5rem !important; -} - -.px-2 { - padding-left: 0.5rem !important; - padding-right: 0.5rem !important; -} - -.py-2 { - padding-top: 0.5rem !important; - padding-bottom: 0.5rem !important; -} - -.p-3 { - padding: 0.75rem !important; -} - -.pt-3 { - padding-top: 0.75rem !important; -} - -.pr-3 { - padding-right: 0.75rem !important; -} - -.pb-3 { - padding-bottom: 0.75rem !important; -} - -.pl-3 { - padding-left: 0.75rem !important; -} - -.px-3 { - padding-left: 0.75rem !important; - padding-right: 0.75rem !important; -} - -.py-3 { - padding-top: 0.75rem !important; - padding-bottom: 0.75rem !important; -} - -.p-4, #fsdocs-content blockquote { - padding: 1rem !important; -} - -.pt-4 { - padding-top: 1rem !important; -} - -.pr-4 { - padding-right: 1rem !important; -} - -.pb-4 { - padding-bottom: 1rem !important; -} - -.pl-4 { - padding-left: 1rem !important; -} - -.px-4 { - padding-left: 1rem !important; - padding-right: 1rem !important; -} - -.py-4 { - padding-top: 1rem !important; - padding-bottom: 1rem !important; -} - -.p-5 { - padding: 1.5rem !important; -} - -.pt-5 { - padding-top: 1.5rem !important; -} - -.pr-5 { - padding-right: 1.5rem !important; -} - -.pb-5 { - padding-bottom: 1.5rem !important; -} - -.pl-5 { - padding-left: 1.5rem !important; -} - -.px-5 { - padding-left: 1.5rem !important; - padding-right: 1.5rem !important; -} - -.py-5 { - padding-top: 1.5rem !important; - padding-bottom: 1.5rem !important; -} - -.p-6 { - padding: 3rem !important; -} - -.pt-6 { - padding-top: 3rem !important; -} - -.pr-6 { - padding-right: 3rem !important; -} - -.pb-6 { - padding-bottom: 3rem !important; -} - -.pl-6 { - padding-left: 3rem !important; -} - -.px-6 { - padding-left: 3rem !important; - padding-right: 3rem !important; -} - -.py-6 { - padding-top: 3rem !important; - padding-bottom: 3rem !important; -} - -.is-size-1 { - font-size: 3rem !important; -} - -.is-size-2 { - font-size: 2.5rem !important; -} - -.is-size-3 { - font-size: 2rem !important; -} - -.is-size-4 { - font-size: 1.5rem !important; -} - -.is-size-5 { - font-size: 1.25rem !important; -} - -.is-size-6 { - font-size: 1rem !important; -} - -.is-size-7 { - font-size: 0.75rem !important; -} - -@media screen and (max-width: 768px) { - .is-size-1-mobile { - font-size: 3rem !important; - } - - .is-size-2-mobile { - font-size: 2.5rem !important; - } - - .is-size-3-mobile { - font-size: 2rem !important; - } - - .is-size-4-mobile { - font-size: 1.5rem !important; - } - - .is-size-5-mobile { - font-size: 1.25rem !important; - } - - .is-size-6-mobile { - font-size: 1rem !important; - } - - .is-size-7-mobile { - font-size: 0.75rem !important; - } -} - -@media screen and (min-width: 769px), print { - .is-size-1-tablet { - font-size: 3rem !important; - } - - .is-size-2-tablet { - font-size: 2.5rem !important; - } - - .is-size-3-tablet { - font-size: 2rem !important; - } - - .is-size-4-tablet { - font-size: 1.5rem !important; - } - - .is-size-5-tablet { - font-size: 1.25rem !important; - } - - .is-size-6-tablet { - font-size: 1rem !important; - } - - .is-size-7-tablet { - font-size: 0.75rem !important; - } -} - -@media screen and (max-width: 1023px) { - .is-size-1-touch { - font-size: 3rem !important; - } - - .is-size-2-touch { - font-size: 2.5rem !important; - } - - .is-size-3-touch { - font-size: 2rem !important; - } - - .is-size-4-touch { - font-size: 1.5rem !important; - } - - .is-size-5-touch { - font-size: 1.25rem !important; - } - - .is-size-6-touch { - font-size: 1rem !important; - } - - .is-size-7-touch { - font-size: 0.75rem !important; - } -} - -@media screen and (min-width: 1024px) { - .is-size-1-desktop { - font-size: 3rem !important; - } - - .is-size-2-desktop { - font-size: 2.5rem !important; - } - - .is-size-3-desktop { - font-size: 2rem !important; - } - - .is-size-4-desktop { - font-size: 1.5rem !important; - } - - .is-size-5-desktop { - font-size: 1.25rem !important; - } - - .is-size-6-desktop { - font-size: 1rem !important; - } - - .is-size-7-desktop { - font-size: 0.75rem !important; - } -} - -@media screen and (min-width: 1216px) { - .is-size-1-widescreen { - font-size: 3rem !important; - } - - .is-size-2-widescreen { - font-size: 2.5rem !important; - } - - .is-size-3-widescreen { - font-size: 2rem !important; - } - - .is-size-4-widescreen { - font-size: 1.5rem !important; - } - - .is-size-5-widescreen { - font-size: 1.25rem !important; - } - - .is-size-6-widescreen { - font-size: 1rem !important; - } - - .is-size-7-widescreen { - font-size: 0.75rem !important; - } -} - -@media screen and (min-width: 1408px) { - .is-size-1-fullhd { - font-size: 3rem !important; - } - - .is-size-2-fullhd { - font-size: 2.5rem !important; - } - - .is-size-3-fullhd { - font-size: 2rem !important; - } - - .is-size-4-fullhd { - font-size: 1.5rem !important; - } - - .is-size-5-fullhd { - font-size: 1.25rem !important; - } - - .is-size-6-fullhd { - font-size: 1rem !important; - } - - .is-size-7-fullhd { - font-size: 0.75rem !important; - } -} - -.has-text-centered { - text-align: center !important; -} - -.has-text-justified { - text-align: justify !important; -} - -.has-text-left { - text-align: left !important; -} - -.has-text-right { - text-align: right !important; -} - -@media screen and (max-width: 768px) { - .has-text-centered-mobile { - text-align: center !important; - } -} - -@media screen and (min-width: 769px), print { - .has-text-centered-tablet { - text-align: center !important; - } -} - -@media screen and (min-width: 769px) and (max-width: 1023px) { - .has-text-centered-tablet-only { - text-align: center !important; - } -} - -@media screen and (max-width: 1023px) { - .has-text-centered-touch { - text-align: center !important; - } -} - -@media screen and (min-width: 1024px) { - .has-text-centered-desktop { - text-align: center !important; - } -} - -@media screen and (min-width: 1024px) and (max-width: 1215px) { - .has-text-centered-desktop-only { - text-align: center !important; - } -} - -@media screen and (min-width: 1216px) { - .has-text-centered-widescreen { - text-align: center !important; - } -} - -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .has-text-centered-widescreen-only { - text-align: center !important; - } -} - -@media screen and (min-width: 1408px) { - .has-text-centered-fullhd { - text-align: center !important; - } -} - -@media screen and (max-width: 768px) { - .has-text-justified-mobile { - text-align: justify !important; - } -} - -@media screen and (min-width: 769px), print { - .has-text-justified-tablet { - text-align: justify !important; - } -} - -@media screen and (min-width: 769px) and (max-width: 1023px) { - .has-text-justified-tablet-only { - text-align: justify !important; - } -} - -@media screen and (max-width: 1023px) { - .has-text-justified-touch { - text-align: justify !important; - } -} - -@media screen and (min-width: 1024px) { - .has-text-justified-desktop { - text-align: justify !important; - } -} - -@media screen and (min-width: 1024px) and (max-width: 1215px) { - .has-text-justified-desktop-only { - text-align: justify !important; - } -} - -@media screen and (min-width: 1216px) { - .has-text-justified-widescreen { - text-align: justify !important; - } -} - -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .has-text-justified-widescreen-only { - text-align: justify !important; - } -} - -@media screen and (min-width: 1408px) { - .has-text-justified-fullhd { - text-align: justify !important; - } -} - -@media screen and (max-width: 768px) { - .has-text-left-mobile { - text-align: left !important; - } -} - -@media screen and (min-width: 769px), print { - .has-text-left-tablet { - text-align: left !important; - } -} - -@media screen and (min-width: 769px) and (max-width: 1023px) { - .has-text-left-tablet-only { - text-align: left !important; - } -} - -@media screen and (max-width: 1023px) { - .has-text-left-touch { - text-align: left !important; - } -} - -@media screen and (min-width: 1024px) { - .has-text-left-desktop { - text-align: left !important; - } -} - -@media screen and (min-width: 1024px) and (max-width: 1215px) { - .has-text-left-desktop-only { - text-align: left !important; - } -} - -@media screen and (min-width: 1216px) { - .has-text-left-widescreen { - text-align: left !important; - } -} - -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .has-text-left-widescreen-only { - text-align: left !important; - } -} - -@media screen and (min-width: 1408px) { - .has-text-left-fullhd { - text-align: left !important; - } -} - -@media screen and (max-width: 768px) { - .has-text-right-mobile { - text-align: right !important; - } -} - -@media screen and (min-width: 769px), print { - .has-text-right-tablet { - text-align: right !important; - } -} - -@media screen and (min-width: 769px) and (max-width: 1023px) { - .has-text-right-tablet-only { - text-align: right !important; - } -} - -@media screen and (max-width: 1023px) { - .has-text-right-touch { - text-align: right !important; - } -} - -@media screen and (min-width: 1024px) { - .has-text-right-desktop { - text-align: right !important; - } -} - -@media screen and (min-width: 1024px) and (max-width: 1215px) { - .has-text-right-desktop-only { - text-align: right !important; - } -} - -@media screen and (min-width: 1216px) { - .has-text-right-widescreen { - text-align: right !important; - } -} - -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .has-text-right-widescreen-only { - text-align: right !important; - } -} - -@media screen and (min-width: 1408px) { - .has-text-right-fullhd { - text-align: right !important; - } -} - -.is-capitalized { - text-transform: capitalize !important; -} - -.is-lowercase { - text-transform: lowercase !important; -} - -.is-uppercase { - text-transform: uppercase !important; -} - -.is-italic { - font-style: italic !important; -} - -.has-text-weight-light { - font-weight: 300 !important; -} - -.has-text-weight-normal { - font-weight: 400 !important; -} - -.has-text-weight-medium { - font-weight: 500 !important; -} - -.has-text-weight-semibold { - font-weight: 600 !important; -} - -.has-text-weight-bold { - font-weight: 700 !important; -} - -.is-family-primary { - font-family: "Nunito", sans-serif !important; -} - -.is-family-secondary { - font-family: "Nunito", sans-serif !important; -} - -.is-family-sans-serif { - font-family: "Nunito", sans-serif !important; -} - -.is-family-monospace { - font-family: monospace !important; -} - -.is-family-code { - font-family: monospace !important; -} - -.is-block { - display: block !important; -} - -@media screen and (max-width: 768px) { - .is-block-mobile { - display: block !important; - } -} - -@media screen and (min-width: 769px), print { - .is-block-tablet { - display: block !important; - } -} - -@media screen and (min-width: 769px) and (max-width: 1023px) { - .is-block-tablet-only { - display: block !important; - } -} - -@media screen and (max-width: 1023px) { - .is-block-touch { - display: block !important; - } -} - -@media screen and (min-width: 1024px) { - .is-block-desktop { - display: block !important; - } -} - -@media screen and (min-width: 1024px) and (max-width: 1215px) { - .is-block-desktop-only { - display: block !important; - } -} - -@media screen and (min-width: 1216px) { - .is-block-widescreen { - display: block !important; - } -} - -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .is-block-widescreen-only { - display: block !important; - } -} - -@media screen and (min-width: 1408px) { - .is-block-fullhd { - display: block !important; - } -} - -.is-flex { - display: -webkit-box !important; - display: -ms-flexbox !important; - display: flex !important; -} - -@media screen and (max-width: 768px) { - .is-flex-mobile { - display: -webkit-box !important; - display: -ms-flexbox !important; - display: flex !important; - } -} - -@media screen and (min-width: 769px), print { - .is-flex-tablet { - display: -webkit-box !important; - display: -ms-flexbox !important; - display: flex !important; - } -} - -@media screen and (min-width: 769px) and (max-width: 1023px) { - .is-flex-tablet-only { - display: -webkit-box !important; - display: -ms-flexbox !important; - display: flex !important; - } -} - -@media screen and (max-width: 1023px) { - .is-flex-touch { - display: -webkit-box !important; - display: -ms-flexbox !important; - display: flex !important; - } -} - -@media screen and (min-width: 1024px) { - .is-flex-desktop { - display: -webkit-box !important; - display: -ms-flexbox !important; - display: flex !important; - } -} - -@media screen and (min-width: 1024px) and (max-width: 1215px) { - .is-flex-desktop-only { - display: -webkit-box !important; - display: -ms-flexbox !important; - display: flex !important; - } -} - -@media screen and (min-width: 1216px) { - .is-flex-widescreen { - display: -webkit-box !important; - display: -ms-flexbox !important; - display: flex !important; - } -} - -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .is-flex-widescreen-only { - display: -webkit-box !important; - display: -ms-flexbox !important; - display: flex !important; - } -} - -@media screen and (min-width: 1408px) { - .is-flex-fullhd { - display: -webkit-box !important; - display: -ms-flexbox !important; - display: flex !important; - } -} - -.is-inline { - display: inline !important; -} - -@media screen and (max-width: 768px) { - .is-inline-mobile { - display: inline !important; - } -} - -@media screen and (min-width: 769px), print { - .is-inline-tablet { - display: inline !important; - } -} - -@media screen and (min-width: 769px) and (max-width: 1023px) { - .is-inline-tablet-only { - display: inline !important; - } -} - -@media screen and (max-width: 1023px) { - .is-inline-touch { - display: inline !important; - } -} - -@media screen and (min-width: 1024px) { - .is-inline-desktop { - display: inline !important; - } -} - -@media screen and (min-width: 1024px) and (max-width: 1215px) { - .is-inline-desktop-only { - display: inline !important; - } -} - -@media screen and (min-width: 1216px) { - .is-inline-widescreen { - display: inline !important; - } -} - -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .is-inline-widescreen-only { - display: inline !important; - } -} - -@media screen and (min-width: 1408px) { - .is-inline-fullhd { - display: inline !important; - } -} - -.is-inline-block { - display: inline-block !important; -} - -@media screen and (max-width: 768px) { - .is-inline-block-mobile { - display: inline-block !important; - } -} - -@media screen and (min-width: 769px), print { - .is-inline-block-tablet { - display: inline-block !important; - } -} - -@media screen and (min-width: 769px) and (max-width: 1023px) { - .is-inline-block-tablet-only { - display: inline-block !important; - } -} - -@media screen and (max-width: 1023px) { - .is-inline-block-touch { - display: inline-block !important; - } -} - -@media screen and (min-width: 1024px) { - .is-inline-block-desktop { - display: inline-block !important; - } -} - -@media screen and (min-width: 1024px) and (max-width: 1215px) { - .is-inline-block-desktop-only { - display: inline-block !important; - } -} - -@media screen and (min-width: 1216px) { - .is-inline-block-widescreen { - display: inline-block !important; - } -} - -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .is-inline-block-widescreen-only { - display: inline-block !important; - } -} - -@media screen and (min-width: 1408px) { - .is-inline-block-fullhd { - display: inline-block !important; - } -} - -.is-inline-flex { - display: -webkit-inline-box !important; - display: -ms-inline-flexbox !important; - display: inline-flex !important; -} - -@media screen and (max-width: 768px) { - .is-inline-flex-mobile { - display: -webkit-inline-box !important; - display: -ms-inline-flexbox !important; - display: inline-flex !important; - } -} - -@media screen and (min-width: 769px), print { - .is-inline-flex-tablet { - display: -webkit-inline-box !important; - display: -ms-inline-flexbox !important; - display: inline-flex !important; - } -} - -@media screen and (min-width: 769px) and (max-width: 1023px) { - .is-inline-flex-tablet-only { - display: -webkit-inline-box !important; - display: -ms-inline-flexbox !important; - display: inline-flex !important; - } -} - -@media screen and (max-width: 1023px) { - .is-inline-flex-touch { - display: -webkit-inline-box !important; - display: -ms-inline-flexbox !important; - display: inline-flex !important; - } -} - -@media screen and (min-width: 1024px) { - .is-inline-flex-desktop { - display: -webkit-inline-box !important; - display: -ms-inline-flexbox !important; - display: inline-flex !important; - } -} - -@media screen and (min-width: 1024px) and (max-width: 1215px) { - .is-inline-flex-desktop-only { - display: -webkit-inline-box !important; - display: -ms-inline-flexbox !important; - display: inline-flex !important; - } -} - -@media screen and (min-width: 1216px) { - .is-inline-flex-widescreen { - display: -webkit-inline-box !important; - display: -ms-inline-flexbox !important; - display: inline-flex !important; - } -} - -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .is-inline-flex-widescreen-only { - display: -webkit-inline-box !important; - display: -ms-inline-flexbox !important; - display: inline-flex !important; - } -} - -@media screen and (min-width: 1408px) { - .is-inline-flex-fullhd { - display: -webkit-inline-box !important; - display: -ms-inline-flexbox !important; - display: inline-flex !important; - } -} - -.is-hidden { - display: none !important; -} - -.is-sr-only { - border: none !important; - clip: rect(0, 0, 0, 0) !important; - height: 0.01em !important; - overflow: hidden !important; - padding: 0 !important; - position: absolute !important; - white-space: nowrap !important; - width: 0.01em !important; -} - -@media screen and (max-width: 768px) { - .is-hidden-mobile { - display: none !important; - } -} - -@media screen and (min-width: 769px), print { - .is-hidden-tablet { - display: none !important; - } -} - -@media screen and (min-width: 769px) and (max-width: 1023px) { - .is-hidden-tablet-only { - display: none !important; - } -} - -@media screen and (max-width: 1023px) { - .is-hidden-touch { - display: none !important; - } -} - -@media screen and (min-width: 1024px) { - .is-hidden-desktop { - display: none !important; - } -} - -@media screen and (min-width: 1024px) and (max-width: 1215px) { - .is-hidden-desktop-only { - display: none !important; - } -} - -@media screen and (min-width: 1216px) { - .is-hidden-widescreen { - display: none !important; - } -} - -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .is-hidden-widescreen-only { - display: none !important; - } -} - -@media screen and (min-width: 1408px) { - .is-hidden-fullhd { - display: none !important; - } -} - -.is-invisible { - visibility: hidden !important; -} - -@media screen and (max-width: 768px) { - .is-invisible-mobile { - visibility: hidden !important; - } -} - -@media screen and (min-width: 769px), print { - .is-invisible-tablet { - visibility: hidden !important; - } -} - -@media screen and (min-width: 769px) and (max-width: 1023px) { - .is-invisible-tablet-only { - visibility: hidden !important; - } -} - -@media screen and (max-width: 1023px) { - .is-invisible-touch { - visibility: hidden !important; - } -} - -@media screen and (min-width: 1024px) { - .is-invisible-desktop { - visibility: hidden !important; - } -} - -@media screen and (min-width: 1024px) and (max-width: 1215px) { - .is-invisible-desktop-only { - visibility: hidden !important; - } -} - -@media screen and (min-width: 1216px) { - .is-invisible-widescreen { - visibility: hidden !important; - } -} - -@media screen and (min-width: 1216px) and (max-width: 1407px) { - .is-invisible-widescreen-only { - visibility: hidden !important; - } -} - -@media screen and (min-width: 1408px) { - .is-invisible-fullhd { - visibility: hidden !important; - } -} - -/* Bulma Layout */ -.hero { - -webkit-box-align: stretch; - -ms-flex-align: stretch; - align-items: stretch; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - -webkit-box-pack: justify; - -ms-flex-pack: justify; - justify-content: space-between; -} - - .hero .navbar { - background: none; - } - - .hero .tabs ul { - border-bottom: none; - } - - .hero.is-white { - background-color: white; - color: #0a0a0a; - } - - .hero.is-white a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current), - .hero.is-white strong { - color: inherit; - } - - .hero.is-white .title { - color: #0a0a0a; - } - - .hero.is-white .subtitle { - color: rgba(10, 10, 10, 0.9); - } - - .hero.is-white .subtitle a:not(.button), - .hero.is-white .subtitle strong { - color: #0a0a0a; - } - -@media screen and (max-width: 1023px) { - .hero.is-white .navbar-menu { - background-color: white; - } -} - -.hero.is-white .navbar-item, -.hero.is-white .navbar-link { - color: rgba(10, 10, 10, 0.7); -} - - .hero.is-white a.navbar-item:hover, .hero.is-white a.navbar-item.is-active, .hero.is-white .navbar-item.active, - .hero.is-white .navbar-link:hover, - .hero.is-white .navbar-link.is-active, - .hero.is-white .navbar-link.active { - background-color: #f2f2f2; - color: #0a0a0a; - } - -.hero.is-white .tabs a { - color: #0a0a0a; - opacity: 0.9; -} - - .hero.is-white .tabs a:hover { - opacity: 1; - } - -.hero.is-white .tabs li.is-active a, .hero.is-white .tabs li.active a { - opacity: 1; -} - -.hero.is-white .tabs.is-boxed a, .hero.is-white .tabs.is-toggle a { - color: #0a0a0a; -} - - .hero.is-white .tabs.is-boxed a:hover, .hero.is-white .tabs.is-toggle a:hover { - background-color: rgba(10, 10, 10, 0.1); - } - -.hero.is-white .tabs.is-boxed li.is-active a, .hero.is-white .tabs.is-boxed li.active a, .hero.is-white .tabs.is-boxed li.is-active a:hover, .hero.is-white .tabs.is-toggle li.is-active a, .hero.is-white .tabs.is-toggle li.active a, .hero.is-white .tabs.is-toggle li.is-active a:hover { - background-color: #0a0a0a; - border-color: #0a0a0a; - color: white; -} - -.hero.is-white.is-bold { - background-image: -o-linear-gradient(309deg, #e8e3e4 0%, white 71%, white 100%); - background-image: linear-gradient(141deg, #e8e3e4 0%, white 71%, white 100%); -} - -@media screen and (max-width: 768px) { - .hero.is-white.is-bold .navbar-menu { - background-image: -o-linear-gradient(309deg, #e8e3e4 0%, white 71%, white 100%); - background-image: linear-gradient(141deg, #e8e3e4 0%, white 71%, white 100%); - } -} - -.hero.is-black { - background-color: #0a0a0a; - color: white; -} - - .hero.is-black a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current), - .hero.is-black strong { - color: inherit; - } - - .hero.is-black .title { - color: white; - } - - .hero.is-black .subtitle { - color: rgba(255, 255, 255, 0.9); - } - - .hero.is-black .subtitle a:not(.button), - .hero.is-black .subtitle strong { - color: white; - } - -@media screen and (max-width: 1023px) { - .hero.is-black .navbar-menu { - background-color: #0a0a0a; - } -} - -.hero.is-black .navbar-item, -.hero.is-black .navbar-link { - color: rgba(255, 255, 255, 0.7); -} - - .hero.is-black a.navbar-item:hover, .hero.is-black a.navbar-item.is-active, .hero.is-black .navbar-item.active, - .hero.is-black .navbar-link:hover, - .hero.is-black .navbar-link.is-active, - .hero.is-black .navbar-link.active { - background-color: black; - color: white; - } - -.hero.is-black .tabs a { - color: white; - opacity: 0.9; -} - - .hero.is-black .tabs a:hover { - opacity: 1; - } - -.hero.is-black .tabs li.is-active a, .hero.is-black .tabs li.active a { - opacity: 1; -} - -.hero.is-black .tabs.is-boxed a, .hero.is-black .tabs.is-toggle a { - color: white; -} - - .hero.is-black .tabs.is-boxed a:hover, .hero.is-black .tabs.is-toggle a:hover { - background-color: rgba(10, 10, 10, 0.1); - } - -.hero.is-black .tabs.is-boxed li.is-active a, .hero.is-black .tabs.is-boxed li.active a, .hero.is-black .tabs.is-boxed li.is-active a:hover, .hero.is-black .tabs.is-toggle li.is-active a, .hero.is-black .tabs.is-toggle li.active a, .hero.is-black .tabs.is-toggle li.is-active a:hover { - background-color: white; - border-color: white; - color: #0a0a0a; -} - -.hero.is-black.is-bold { - background-image: -o-linear-gradient(309deg, black 0%, #0a0a0a 71%, #181616 100%); - background-image: linear-gradient(141deg, black 0%, #0a0a0a 71%, #181616 100%); -} - -@media screen and (max-width: 768px) { - .hero.is-black.is-bold .navbar-menu { - background-image: -o-linear-gradient(309deg, black 0%, #0a0a0a 71%, #181616 100%); - background-image: linear-gradient(141deg, black 0%, #0a0a0a 71%, #181616 100%); - } -} - -.hero.is-light { - background-color: whitesmoke; - color: rgba(0, 0, 0, 0.7); -} - - .hero.is-light a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current), - .hero.is-light strong { - color: inherit; - } - - .hero.is-light .title { - color: rgba(0, 0, 0, 0.7); - } - - .hero.is-light .subtitle { - color: rgba(0, 0, 0, 0.9); - } - - .hero.is-light .subtitle a:not(.button), - .hero.is-light .subtitle strong { - color: rgba(0, 0, 0, 0.7); - } - -@media screen and (max-width: 1023px) { - .hero.is-light .navbar-menu { - background-color: whitesmoke; - } -} - -.hero.is-light .navbar-item, -.hero.is-light .navbar-link { - color: rgba(0, 0, 0, 0.7); -} - - .hero.is-light a.navbar-item:hover, .hero.is-light a.navbar-item.is-active, .hero.is-light .navbar-item.active, - .hero.is-light .navbar-link:hover, - .hero.is-light .navbar-link.is-active, - .hero.is-light .navbar-link.active { - background-color: #e8e8e8; - color: rgba(0, 0, 0, 0.7); - } - -.hero.is-light .tabs a { - color: rgba(0, 0, 0, 0.7); - opacity: 0.9; -} - - .hero.is-light .tabs a:hover { - opacity: 1; - } - -.hero.is-light .tabs li.is-active a, .hero.is-light .tabs li.active a { - opacity: 1; -} - -.hero.is-light .tabs.is-boxed a, .hero.is-light .tabs.is-toggle a { - color: rgba(0, 0, 0, 0.7); -} - - .hero.is-light .tabs.is-boxed a:hover, .hero.is-light .tabs.is-toggle a:hover { - background-color: rgba(10, 10, 10, 0.1); - } - -.hero.is-light .tabs.is-boxed li.is-active a, .hero.is-light .tabs.is-boxed li.active a, .hero.is-light .tabs.is-boxed li.is-active a:hover, .hero.is-light .tabs.is-toggle li.is-active a, .hero.is-light .tabs.is-toggle li.active a, .hero.is-light .tabs.is-toggle li.is-active a:hover { - background-color: rgba(0, 0, 0, 0.7); - border-color: rgba(0, 0, 0, 0.7); - color: whitesmoke; -} - -.hero.is-light.is-bold { - background-image: -o-linear-gradient(309deg, #dfd8d9 0%, whitesmoke 71%, white 100%); - background-image: linear-gradient(141deg, #dfd8d9 0%, whitesmoke 71%, white 100%); -} - -@media screen and (max-width: 768px) { - .hero.is-light.is-bold .navbar-menu { - background-image: -o-linear-gradient(309deg, #dfd8d9 0%, whitesmoke 71%, white 100%); - background-image: linear-gradient(141deg, #dfd8d9 0%, whitesmoke 71%, white 100%); - } -} - -.hero.is-dark { - background-color: #200117; - color: #fff; -} - - .hero.is-dark a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current), - .hero.is-dark strong { - color: inherit; - } - - .hero.is-dark .title { - color: #fff; - } - - .hero.is-dark .subtitle { - color: rgba(255, 255, 255, 0.9); - } - - .hero.is-dark .subtitle a:not(.button), - .hero.is-dark .subtitle strong { - color: #fff; - } - -@media screen and (max-width: 1023px) { - .hero.is-dark .navbar-menu { - background-color: #200117; - } -} - -.hero.is-dark .navbar-item, -.hero.is-dark .navbar-link { - color: rgba(255, 255, 255, 0.7); -} - - .hero.is-dark a.navbar-item:hover, .hero.is-dark a.navbar-item.is-active, .hero.is-dark .navbar-item.active, - .hero.is-dark .navbar-link:hover, - .hero.is-dark .navbar-link.is-active, - .hero.is-dark .navbar-link.active { - background-color: #070005; - color: #fff; - } - -.hero.is-dark .tabs a { - color: #fff; - opacity: 0.9; -} - - .hero.is-dark .tabs a:hover { - opacity: 1; - } - -.hero.is-dark .tabs li.is-active a, .hero.is-dark .tabs li.active a { - opacity: 1; -} - -.hero.is-dark .tabs.is-boxed a, .hero.is-dark .tabs.is-toggle a { - color: #fff; -} - - .hero.is-dark .tabs.is-boxed a:hover, .hero.is-dark .tabs.is-toggle a:hover { - background-color: rgba(10, 10, 10, 0.1); - } - -.hero.is-dark .tabs.is-boxed li.is-active a, .hero.is-dark .tabs.is-boxed li.active a, .hero.is-dark .tabs.is-boxed li.is-active a:hover, .hero.is-dark .tabs.is-toggle li.is-active a, .hero.is-dark .tabs.is-toggle li.active a, .hero.is-dark .tabs.is-toggle li.is-active a:hover { - background-color: #fff; - border-color: #fff; - color: #200117; -} - -.hero.is-dark.is-bold { - background-image: -o-linear-gradient(309deg, black 0%, #200117 71%, #3a0020 100%); - background-image: linear-gradient(141deg, black 0%, #200117 71%, #3a0020 100%); -} - -@media screen and (max-width: 768px) { - .hero.is-dark.is-bold .navbar-menu { - background-image: -o-linear-gradient(309deg, black 0%, #200117 71%, #3a0020 100%); - background-image: linear-gradient(141deg, black 0%, #200117 71%, #3a0020 100%); - } -} - -.hero.is-primary { - background-color: #A00975; - color: #fff; -} - - .hero.is-primary a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current), - .hero.is-primary strong { - color: inherit; - } - - .hero.is-primary .title { - color: #fff; - } - - .hero.is-primary .subtitle { - color: rgba(255, 255, 255, 0.9); - } - - .hero.is-primary .subtitle a:not(.button), - .hero.is-primary .subtitle strong { - color: #fff; - } - -@media screen and (max-width: 1023px) { - .hero.is-primary .navbar-menu { - background-color: #A00975; - } -} - -.hero.is-primary .navbar-item, -.hero.is-primary .navbar-link { - color: rgba(255, 255, 255, 0.7); -} - - .hero.is-primary a.navbar-item:hover, .hero.is-primary a.navbar-item.is-active, .hero.is-primary .navbar-item.active, - .hero.is-primary .navbar-link:hover, - .hero.is-primary .navbar-link.is-active, - .hero.is-primary .navbar-link.active { - background-color: #880863; - color: #fff; - } - -.hero.is-primary .tabs a { - color: #fff; - opacity: 0.9; -} - - .hero.is-primary .tabs a:hover { - opacity: 1; - } - -.hero.is-primary .tabs li.is-active a, .hero.is-primary .tabs li.active a { - opacity: 1; -} - -.hero.is-primary .tabs.is-boxed a, .hero.is-primary .tabs.is-toggle a { - color: #fff; -} - - .hero.is-primary .tabs.is-boxed a:hover, .hero.is-primary .tabs.is-toggle a:hover { - background-color: rgba(10, 10, 10, 0.1); - } - -.hero.is-primary .tabs.is-boxed li.is-active a, .hero.is-primary .tabs.is-boxed li.active a, .hero.is-primary .tabs.is-boxed li.is-active a:hover, .hero.is-primary .tabs.is-toggle li.is-active a, .hero.is-primary .tabs.is-toggle li.active a, .hero.is-primary .tabs.is-toggle li.is-active a:hover { - background-color: #fff; - border-color: #fff; - color: #A00975; -} - -.hero.is-primary.is-bold { - background-image: -o-linear-gradient(309deg, #760068 0%, #A00975 71%, #bd056a 100%); - background-image: linear-gradient(141deg, #760068 0%, #A00975 71%, #bd056a 100%); -} - -@media screen and (max-width: 768px) { - .hero.is-primary.is-bold .navbar-menu { - background-image: -o-linear-gradient(309deg, #760068 0%, #A00975 71%, #bd056a 100%); - background-image: linear-gradient(141deg, #760068 0%, #A00975 71%, #bd056a 100%); - } -} - -.hero.is-link { - background-color: #378BBA; - color: #fff; -} - - .hero.is-link a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current), - .hero.is-link strong { - color: inherit; - } - - .hero.is-link .title { - color: #fff; - } - - .hero.is-link .subtitle { - color: rgba(255, 255, 255, 0.9); - } - - .hero.is-link .subtitle a:not(.button), - .hero.is-link .subtitle strong { - color: #fff; - } - -@media screen and (max-width: 1023px) { - .hero.is-link .navbar-menu { - background-color: #378BBA; - } -} - -.hero.is-link .navbar-item, -.hero.is-link .navbar-link { - color: rgba(255, 255, 255, 0.7); -} - - .hero.is-link a.navbar-item:hover, .hero.is-link a.navbar-item.is-active, .hero.is-link .navbar-item.active, - .hero.is-link .navbar-link:hover, - .hero.is-link .navbar-link.is-active, - .hero.is-link .navbar-link.active { - background-color: #317ca6; - color: #fff; - } - -.hero.is-link .tabs a { - color: #fff; - opacity: 0.9; -} - - .hero.is-link .tabs a:hover { - opacity: 1; - } - -.hero.is-link .tabs li.is-active a, .hero.is-link .tabs li.active a { - opacity: 1; -} - -.hero.is-link .tabs.is-boxed a, .hero.is-link .tabs.is-toggle a { - color: #fff; -} - - .hero.is-link .tabs.is-boxed a:hover, .hero.is-link .tabs.is-toggle a:hover { - background-color: rgba(10, 10, 10, 0.1); - } - -.hero.is-link .tabs.is-boxed li.is-active a, .hero.is-link .tabs.is-boxed li.active a, .hero.is-link .tabs.is-boxed li.is-active a:hover, .hero.is-link .tabs.is-toggle li.is-active a, .hero.is-link .tabs.is-toggle li.active a, .hero.is-link .tabs.is-toggle li.is-active a:hover { - background-color: #fff; - border-color: #fff; - color: #378BBA; -} - -.hero.is-link.is-bold { - background-image: -o-linear-gradient(309deg, #22859c 0%, #378BBA 71%, #3d82ce 100%); - background-image: linear-gradient(141deg, #22859c 0%, #378BBA 71%, #3d82ce 100%); -} - -@media screen and (max-width: 768px) { - .hero.is-link.is-bold .navbar-menu { - background-image: -o-linear-gradient(309deg, #22859c 0%, #378BBA 71%, #3d82ce 100%); - background-image: linear-gradient(141deg, #22859c 0%, #378BBA 71%, #3d82ce 100%); - } -} - -.hero.is-info { - background-color: #3298dc; - color: #fff; -} - - .hero.is-info a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current), - .hero.is-info strong { - color: inherit; - } - - .hero.is-info .title { - color: #fff; - } - - .hero.is-info .subtitle { - color: rgba(255, 255, 255, 0.9); - } - - .hero.is-info .subtitle a:not(.button), - .hero.is-info .subtitle strong { - color: #fff; - } - -@media screen and (max-width: 1023px) { - .hero.is-info .navbar-menu { - background-color: #3298dc; - } -} - -.hero.is-info .navbar-item, -.hero.is-info .navbar-link { - color: rgba(255, 255, 255, 0.7); -} - - .hero.is-info a.navbar-item:hover, .hero.is-info a.navbar-item.is-active, .hero.is-info .navbar-item.active, - .hero.is-info .navbar-link:hover, - .hero.is-info .navbar-link.is-active, - .hero.is-info .navbar-link.active { - background-color: #238cd1; - color: #fff; - } - -.hero.is-info .tabs a { - color: #fff; - opacity: 0.9; -} - - .hero.is-info .tabs a:hover { - opacity: 1; - } - -.hero.is-info .tabs li.is-active a, .hero.is-info .tabs li.active a { - opacity: 1; -} - -.hero.is-info .tabs.is-boxed a, .hero.is-info .tabs.is-toggle a { - color: #fff; -} - - .hero.is-info .tabs.is-boxed a:hover, .hero.is-info .tabs.is-toggle a:hover { - background-color: rgba(10, 10, 10, 0.1); - } - -.hero.is-info .tabs.is-boxed li.is-active a, .hero.is-info .tabs.is-boxed li.active a, .hero.is-info .tabs.is-boxed li.is-active a:hover, .hero.is-info .tabs.is-toggle li.is-active a, .hero.is-info .tabs.is-toggle li.active a, .hero.is-info .tabs.is-toggle li.is-active a:hover { - background-color: #fff; - border-color: #fff; - color: #3298dc; -} - -.hero.is-info.is-bold { - background-image: -o-linear-gradient(309deg, #159dc6 0%, #3298dc 71%, #4389e5 100%); - background-image: linear-gradient(141deg, #159dc6 0%, #3298dc 71%, #4389e5 100%); -} - -@media screen and (max-width: 768px) { - .hero.is-info.is-bold .navbar-menu { - background-image: -o-linear-gradient(309deg, #159dc6 0%, #3298dc 71%, #4389e5 100%); - background-image: linear-gradient(141deg, #159dc6 0%, #3298dc 71%, #4389e5 100%); - } -} - -.hero.is-success { - background-color: #48c774; - color: #fff; -} - - .hero.is-success a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current), - .hero.is-success strong { - color: inherit; - } - - .hero.is-success .title { - color: #fff; - } - - .hero.is-success .subtitle { - color: rgba(255, 255, 255, 0.9); - } - - .hero.is-success .subtitle a:not(.button), - .hero.is-success .subtitle strong { - color: #fff; - } - -@media screen and (max-width: 1023px) { - .hero.is-success .navbar-menu { - background-color: #48c774; - } -} - -.hero.is-success .navbar-item, -.hero.is-success .navbar-link { - color: rgba(255, 255, 255, 0.7); -} - - .hero.is-success a.navbar-item:hover, .hero.is-success a.navbar-item.is-active, .hero.is-success .navbar-item.active, - .hero.is-success .navbar-link:hover, - .hero.is-success .navbar-link.is-active, - .hero.is-success .navbar-link.active { - background-color: #3abb67; - color: #fff; - } - -.hero.is-success .tabs a { - color: #fff; - opacity: 0.9; -} - - .hero.is-success .tabs a:hover { - opacity: 1; - } - -.hero.is-success .tabs li.is-active a, .hero.is-success .tabs li.active a { - opacity: 1; -} - -.hero.is-success .tabs.is-boxed a, .hero.is-success .tabs.is-toggle a { - color: #fff; -} - - .hero.is-success .tabs.is-boxed a:hover, .hero.is-success .tabs.is-toggle a:hover { - background-color: rgba(10, 10, 10, 0.1); - } - -.hero.is-success .tabs.is-boxed li.is-active a, .hero.is-success .tabs.is-boxed li.active a, .hero.is-success .tabs.is-boxed li.is-active a:hover, .hero.is-success .tabs.is-toggle li.is-active a, .hero.is-success .tabs.is-toggle li.active a, .hero.is-success .tabs.is-toggle li.is-active a:hover { - background-color: #fff; - border-color: #fff; - color: #48c774; -} - -.hero.is-success.is-bold { - background-image: -o-linear-gradient(309deg, #29b342 0%, #48c774 71%, #56d296 100%); - background-image: linear-gradient(141deg, #29b342 0%, #48c774 71%, #56d296 100%); -} - -@media screen and (max-width: 768px) { - .hero.is-success.is-bold .navbar-menu { - background-image: -o-linear-gradient(309deg, #29b342 0%, #48c774 71%, #56d296 100%); - background-image: linear-gradient(141deg, #29b342 0%, #48c774 71%, #56d296 100%); - } -} - -.hero.is-warning { - background-color: #ffdd57; - color: rgba(0, 0, 0, 0.7); -} - - .hero.is-warning a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current), - .hero.is-warning strong { - color: inherit; - } - - .hero.is-warning .title { - color: rgba(0, 0, 0, 0.7); - } - - .hero.is-warning .subtitle { - color: rgba(0, 0, 0, 0.9); - } - - .hero.is-warning .subtitle a:not(.button), - .hero.is-warning .subtitle strong { - color: rgba(0, 0, 0, 0.7); - } - -@media screen and (max-width: 1023px) { - .hero.is-warning .navbar-menu { - background-color: #ffdd57; - } -} - -.hero.is-warning .navbar-item, -.hero.is-warning .navbar-link { - color: rgba(0, 0, 0, 0.7); -} - - .hero.is-warning a.navbar-item:hover, .hero.is-warning a.navbar-item.is-active, .hero.is-warning .navbar-item.active, - .hero.is-warning .navbar-link:hover, - .hero.is-warning .navbar-link.is-active, - .hero.is-warning .navbar-link.active { - background-color: #ffd83d; - color: rgba(0, 0, 0, 0.7); - } - -.hero.is-warning .tabs a { - color: rgba(0, 0, 0, 0.7); - opacity: 0.9; -} - - .hero.is-warning .tabs a:hover { - opacity: 1; - } - -.hero.is-warning .tabs li.is-active a, .hero.is-warning .tabs li.active a { - opacity: 1; -} - -.hero.is-warning .tabs.is-boxed a, .hero.is-warning .tabs.is-toggle a { - color: rgba(0, 0, 0, 0.7); -} - - .hero.is-warning .tabs.is-boxed a:hover, .hero.is-warning .tabs.is-toggle a:hover { - background-color: rgba(10, 10, 10, 0.1); - } - -.hero.is-warning .tabs.is-boxed li.is-active a, .hero.is-warning .tabs.is-boxed li.active a, .hero.is-warning .tabs.is-boxed li.is-active a:hover, .hero.is-warning .tabs.is-toggle li.is-active a, .hero.is-warning .tabs.is-toggle li.active a, .hero.is-warning .tabs.is-toggle li.is-active a:hover { - background-color: rgba(0, 0, 0, 0.7); - border-color: rgba(0, 0, 0, 0.7); - color: #ffdd57; -} - -.hero.is-warning.is-bold { - background-image: -o-linear-gradient(309deg, #ffaf24 0%, #ffdd57 71%, #fffa70 100%); - background-image: linear-gradient(141deg, #ffaf24 0%, #ffdd57 71%, #fffa70 100%); -} - -@media screen and (max-width: 768px) { - .hero.is-warning.is-bold .navbar-menu { - background-image: -o-linear-gradient(309deg, #ffaf24 0%, #ffdd57 71%, #fffa70 100%); - background-image: linear-gradient(141deg, #ffaf24 0%, #ffdd57 71%, #fffa70 100%); - } -} - -.hero.is-danger { - background-color: #f14668; - color: #fff; -} - - .hero.is-danger a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current), - .hero.is-danger strong { - color: inherit; - } - - .hero.is-danger .title { - color: #fff; - } - - .hero.is-danger .subtitle { - color: rgba(255, 255, 255, 0.9); - } - - .hero.is-danger .subtitle a:not(.button), - .hero.is-danger .subtitle strong { - color: #fff; - } - -@media screen and (max-width: 1023px) { - .hero.is-danger .navbar-menu { - background-color: #f14668; - } -} - -.hero.is-danger .navbar-item, -.hero.is-danger .navbar-link { - color: rgba(255, 255, 255, 0.7); -} - - .hero.is-danger a.navbar-item:hover, .hero.is-danger a.navbar-item.is-active, .hero.is-danger .navbar-item.active, - .hero.is-danger .navbar-link:hover, - .hero.is-danger .navbar-link.is-active, - .hero.is-danger .navbar-link.active { - background-color: #ef2e55; - color: #fff; - } - -.hero.is-danger .tabs a { - color: #fff; - opacity: 0.9; -} - - .hero.is-danger .tabs a:hover { - opacity: 1; - } - -.hero.is-danger .tabs li.is-active a, .hero.is-danger .tabs li.active a { - opacity: 1; -} - -.hero.is-danger .tabs.is-boxed a, .hero.is-danger .tabs.is-toggle a { - color: #fff; -} - - .hero.is-danger .tabs.is-boxed a:hover, .hero.is-danger .tabs.is-toggle a:hover { - background-color: rgba(10, 10, 10, 0.1); - } - -.hero.is-danger .tabs.is-boxed li.is-active a, .hero.is-danger .tabs.is-boxed li.active a, .hero.is-danger .tabs.is-boxed li.is-active a:hover, .hero.is-danger .tabs.is-toggle li.is-active a, .hero.is-danger .tabs.is-toggle li.active a, .hero.is-danger .tabs.is-toggle li.is-active a:hover { - background-color: #fff; - border-color: #fff; - color: #f14668; -} - -.hero.is-danger.is-bold { - background-image: -o-linear-gradient(309deg, #fa0a62 0%, #f14668 71%, #f7595f 100%); - background-image: linear-gradient(141deg, #fa0a62 0%, #f14668 71%, #f7595f 100%); -} - -@media screen and (max-width: 768px) { - .hero.is-danger.is-bold .navbar-menu { - background-image: -o-linear-gradient(309deg, #fa0a62 0%, #f14668 71%, #f7595f 100%); - background-image: linear-gradient(141deg, #fa0a62 0%, #f14668 71%, #f7595f 100%); - } -} - -.hero.is-small .hero-body { - padding: 1.5rem; -} - -@media screen and (min-width: 769px), print { - .hero.is-medium .hero-body { - padding: 9rem 1.5rem; - } -} - -@media screen and (min-width: 769px), print { - .hero.is-large .hero-body { - padding: 18rem 1.5rem; - } -} - -.hero.is-halfheight .hero-body, .hero.is-fullheight .hero-body, .hero.is-fullheight-with-navbar .hero-body { - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - display: -webkit-box; - display: -ms-flexbox; - display: flex; -} - - .hero.is-halfheight .hero-body > .container, .hero.is-fullheight .hero-body > .container, .hero.is-fullheight-with-navbar .hero-body > .container { - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - -ms-flex-negative: 1; - flex-shrink: 1; - } - -.hero.is-halfheight { - min-height: 50vh; -} - -.hero.is-fullheight { - min-height: 100vh; -} - -.hero-video { - overflow: hidden; -} - - .hero-video video { - left: 50%; - min-height: 100%; - min-width: 100%; - position: absolute; - top: 50%; - -webkit-transform: translate3d(-50%, -50%, 0); - transform: translate3d(-50%, -50%, 0); - } - - .hero-video.is-transparent { - opacity: 0.3; - } - -@media screen and (max-width: 768px) { - .hero-video { - display: none; - } -} - -.hero-buttons { - margin-top: 1.5rem; -} - -@media screen and (max-width: 768px) { - .hero-buttons .button { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - } - - .hero-buttons .button:not(:last-child) { - margin-bottom: 0.75rem; - } -} - -@media screen and (min-width: 769px), print { - .hero-buttons { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - } - - .hero-buttons .button:not(:last-child) { - margin-right: 1.5rem; - } -} - -.hero-head, -.hero-foot { - -webkit-box-flex: 0; - -ms-flex-positive: 0; - flex-grow: 0; - -ms-flex-negative: 0; - flex-shrink: 0; -} - -.hero-body { - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - -ms-flex-negative: 0; - flex-shrink: 0; - padding: 3rem 1.5rem; -} - -.section { - padding: 3rem 1.5rem; -} - -@media screen and (min-width: 1024px) { - .section.is-medium { - padding: 9rem 1.5rem; - } - - .section.is-large { - padding: 18rem 1.5rem; - } -} - -.footer { - background-color: #fafafa; - padding: 3rem 1.5rem 6rem; -} - -#fsdocs-searchbox { - margin: 0 auto; -} - -@media screen and (min-width: 768px) { - #fsdocs-menu { - border-right: 1px solid #200117; - position: sticky; - display: inline-block; - vertical-align: top; - height: 100vh; - top: 0; - bottom: 0; - overflow-y: auto; - background-color: whitesmoke; - } -} - -@media screen and (max-width: 768px) { - #fsdocs-menu { - background-color: #ededed; - } - - #fsdocs-menu #fsdocs-menu { - border: none; - } -} - -.nav-header { - border-bottom: 1px dashed #A00975; - list-style: none; - color: #A00975; -} - -#fsdocs-content h1 a, #fsdocs-content h1 a:hover, #fsdocs-content h1 a:focus, -#fsdocs-content h2 a, #fsdocs-content h2 a:hover, #fsdocs-content h2 a:focus, -#fsdocs-content h3 a, #fsdocs-content h3 a:hover, #fsdocs-content h3 a:focus, -#fsdocs-content h4 a, #fsdocs-content h4 a:hover, #fsdocs-content h4 a:focus, -#fsdocs-content h5 a, #fsdocs-content h5 a:hover, #fsdocs-content h5 a:focus, -#fsdocs-content h6 a, #fsdocs-content h6 a:hover, #fsdocs-content h6 a:focus { - color: #A00975; -} - -#fsdocs-content h1 a { - border-bottom: 8px solid #200117; -} - -#fsdocs-content h2 a { - border-bottom: 5px solid #200117; -} - -#fsdocs-content h3 a, -#fsdocs-content h4 a { - border-bottom: 2px solid #200117; -} - -#fsdocs-content h5 a, -#fsdocs-content h6 a { - border-bottom: 1px solid #200117; -} - -#fsdocs-content li { - margin: initial; -} - -strong { - border-bottom: 2px solid #A00975; -} - -em { - color: #A00975; -} - -#fsdocs-content ul { - -webkit-padding-start: 40px; - padding-inline-start: 40px; - list-style-type: disc; -} - -#fsdocs-content ol { - -webkit-padding-start: 40px; - padding-inline-start: 40px; - list-style-type: decimal; -} - -#fsdocs-content blockquote { - display: block; - -webkit-margin-before: 1em; - margin-block-start: 1em; - -webkit-margin-after: 1em; - margin-block-end: 1em; - -webkit-margin-start: 40px; - margin-inline-start: 40px; - -webkit-margin-end: 40px; - margin-inline-end: 40px; - background-color: whitesmoke; - border-left: 4px solid #A00975; -} - -#fsdocs-content table.pre, #fsdocs-content pre.fssnip, #fsdocs-content pre { - background-color: #200117 !important; - color: #fafafa !important; - overflow-x: auto; - display: block; - font-weight: initial; -} - - #fsdocs-content pre.fssnip code { - font: 0.85rem 'Roboto Mono', monospace; - font-weight: initial; - } - -#fsdocs-menu::-webkit-scrollbar { - width: 1px; -} - -#fsdocs-menu::-webkit-scrollbar-thumb { - border-radius: 5px; - background-color: #200117; -} - -#fsdocs-content table.pre::-webkit-scrollbar-track, -#fsdocs-content pre.fssnip ::-webkit-scrollbar-track, -#fsdocs-content pre ::-webkit-scrollbar-track { - box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); - -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); - border-radius: 5px; - background-color: #200117; -} - -#fsdocs-content table.pre::-webkit-scrollbar, -#fsdocs-content pre.fssnip ::-webkit-scrollbar, -#fsdocs-content pre ::-webkit-scrollbar { - height: 8px; - background-color: #200117; - border-radius: 5px; -} - -#fsdocs-content table.pre::-webkit-scrollbar-thumb, -#fsdocs-content pre.fssnip ::-webkit-scrollbar-thumb, -#fsdocs-content pre ::-webkit-scrollbar-thumb { - border-radius: 5px; - box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); - -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); - background-color: #A00975; -} - -/*-------------------------------------------------------------------------- - Formatting for F# code snippets -/*--------------------------------------------------------------------------*/ -.fsdocs-param-name, -.fsdocs-return-name, -.fsdocs-param { - font-weight: 900; - font-size: 0.85rem; - font-family: 'Roboto Mono', monospace; -} - -/* strings --- and stlyes for other string related formats */ -#fsdocs-content span.s { - color: #d59a1b; -} - -/* printf formatters */ -#fsdocs-content span.pf { - color: #A00975; -} - -/* escaped chars */ -#fsdocs-content span.e { - color: #d59a1b; -} - -/* identifiers --- and styles for more specific identifier types */ -#fsdocs-content span.id { - color: #fafafa; -} - -/* module */ -#fsdocs-content span.m { - color: #44d57f; -} - -/* reference type */ -#fsdocs-content span.rt { - color: #44d57f; -} - -/* value type */ -#fsdocs-content span.vt { - color: #44d57f; -} - -/* interface */ -#fsdocs-content span.if { - color: #44d57f; -} - -/* type argument */ -#fsdocs-content span.ta { - color: #44d57f; -} - -/* disposable */ -#fsdocs-content span.d { - color: #c6ffdd; -} - -/* property */ -#fsdocs-content span.prop { - color: #fafafa; -} - -/* punctuation */ -#fsdocs-content span.p { - color: #fafafa; -} - -#fsdocs-content span.pn { - color: #fafafa; -} - -#fsdocs-content span.f { - color: #fafafa; -} - -#fsdocs-content span.fn { - color: #d2c572; -} - -/* active pattern */ -#fsdocs-content span.pat { - color: #438AFE; -} - -/* union case */ -#fsdocs-content span.u { - color: #44d57f; -} - -/* enumeration */ -#fsdocs-content span.e { - color: #44d57f; -} - -/* keywords */ -#fsdocs-content span.k { - color: #F99BDE; -} - -/* comment */ -#fsdocs-content span.c { - color: #6A9955; -} - -#fsdocs-content span.o { - color: #D12F67; -} - -/* numbers */ -#fsdocs-content span.n { - color: #c6ffdd; -} - -/* line number */ -#fsdocs-content span.l { - color: #fafafa; -} - -/* mutable var or ref cell */ -#fsdocs-content span.v { - color: #d2c572; - font-weight: bold; -} - -/* inactive code */ -#fsdocs-content span.inactive { - color: #808080; -} - -/* preprocessor */ -#fsdocs-content span.prep { - color: #ff9b9b; -} - -/* fsi output */ -#fsdocs-content span.fsi { - color: #fafafa; -} - -/* tool tip */ -div.fsdocs-tip { - background: #475b5f; - border-radius: 4px; - font: 11pt 'Droid Sans', arial, sans-serif; - padding: 6px 8px 6px 8px; - display: none; - color: #d1d1d1; - pointer-events: none; -} - - div.fsdocs-tip code { - color: #d1d1d1; - font: 11pt 'Droid Sans', arial, sans-serif; - } - - div.fsdocs-tip em { - color: #6A9955; - } - -/*# sourceMappingURL=C:\Users\schne\source\repos\fslaborg\docs-template\Content\docs\content\fsdocs-custom.css.map */ diff --git a/content/fsdocs-default.css b/content/fsdocs-default.css index 68b13131..e2063f56 100755 --- a/content/fsdocs-default.css +++ b/content/fsdocs-default.css @@ -1,605 +1,1220 @@ -@import url('https://fonts.googleapis.com/css2?family=Hind+Vadodara&family=Roboto+Mono&display=swap'); -/*-------------------------------------------------------------------------- - Formatting for page & standard document content -/*--------------------------------------------------------------------------*/ +:root { + --monospace-font: "Fira Code", monospace; + --system-font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; + --heading-font-family: var(--system-font); + + --spacing-50: 4px; + --spacing-100: 8px; + --spacing-200: 12px; + --spacing-300: 16px; + --spacing-400: 24px; + --spacing-500: 32px; + --spacing-600: 48px; + --spacing-700: 64px; + --spacing-800: 96px; + --spacing-900: 128px; + --spacing-950: 192px; + + --font-50: 12px; + --font-100: 14px; + --font-200: 16px; + --font-300: 18px; + --font-400: 20px; + --font-500: 24px; + --font-600: 30px; + --font-700: 36px; + --font-800: 48px; + --font-900: 60px; + --font-950: 72px; + + --line-height: 1.5; + --heading-line-height: 1.25; + --radius: 6px; + + --container-sm: 768px; + --container-md: 960px; + --container-lg: 1024px; + --container-xl: 1200px; + --container-xxl: 1400px; + --container-xxxl: 1800px; + --main-menu-width: 260px; + --page-menu-width: var(--main-menu-width); + --header-height: 60px; + --body-grid-template-columns: var(--main-menu-width) minmax(0, 1fr); + --body-grid-template-columns-xl: var(--main-menu-width) minmax(0, 1fr) var(--page-menu-width); + --main-menu-grid-row: 2; + --main-menu-grid-column: 1; + --main-grid-row: 2; + --main-grid-column: 2; + --dialog-width: 500px; + --api-docs-first-column-min-width: 320px; + --api-docs-second-column-min-width: 240px; + + /* light theme */ + --primary: #1e8bc3; + --background: #f5f5f6; + --text-color: #020202; + --text-hover: #282828; + --heading-color: #2e293a; + --code-background: #ffffff; + --code-color: #1a4b0b; + --header-background: #f9fbfc; + --header-border: #e8ecf1; + --header-link-color: var(--text-color); + --mobile-menu-background: var(--header-background); + --menu-color: var(--text-color); + --menu-item-hover-background: #eff0f1; + --menu-item-hover-color: var(--menu-color); + --doc-tip-background: #F7F7F7; + --link-color: #4871f7; + --link-hover: #91aafa; + --search-background: rgb(229, 231, 235); + --nav-category: rgb(156, 163, 175); + --scrollbar-track-background: #424242; + --scrollbar-track-border: #4A4A4A; + --scrollbar-thumb-background: #686868; + --shadow-color: hsla(0, 0%, 0%, .1); + --main-shadow-color: hsla(0, 0%, 0%, .025); + --aside-background: var(--header-background); + --blockquote-bacground-color: var(--header-background); + --blockquote-color: var(--text-color); + --on-this-page-color: var(--menu-color); + --page-menu-background-color: var(--header-background); + --page-menu-background-border-color: var(--header-border); + --page-menu-background-hover-border-color: var(--text-color); + --nav-item-border-color: var(--header-border); + --nav-item-active-border-color: var(--text-color); + --dialog-background-color: var(--header-background); + --dialog-empty-color: var(--nav-category); + --dialog-icon-color: var(--text-color); + --dialog-link-color: var(--link-color); + --dialog-link-hover-color: var(--header-background); + --dialog-link-hover-background-color: var(--link-hover); + --code-fence-border-color: transparent; + + --header-brand-text-transform: none; + + --code-strings-color: #0093A1; + --code-printf-color: #6B2FBA; + --code-escaped-color: #EA8675; + --code-identifiers-color: #6B2FBA; + --code-module-color: #009999; + --code-reference-color: #4974D1; + --code-value-color: #1B6600; + --code-interface-color: #43AEC6; + --code-typearg-color: #43AEC6; + --code-disposable-color: #43AEC6; + --code-property-color: #43AEC6; + --code-punctuation-color: #43AEC6; + --code-punctuation2-color: var(--text-color); + --code-function-color: #6B2FBA; + --code-function2-color: #6B2FBA; + --code-activepattern-color: #4ec9b0; + --code-unioncase-color: #4ec9b0; + --code-enumeration-color: #8C6C41; + --code-keywords-color: #0F54D6; + --code-comment-color: #707070; + --code-operators-color: #0F54D6; + --code-numbers-color: #009999; + --code-linenumbers-color: #80b0b0; + --code-mutable-color: #1b6600; + --code-inactive-color: #808080; + --code-preprocessor-color: #af75c1; + --code-fsioutput-color: #808080; + --code-tooltip-color: #d1d1d1; +} + +/* dark theme */ + +[data-theme=dark] { + --primary: #81cfe0; + --background: rgb(20, 21, 26); + --text-color: #F7F7F7; + --text-hover: #FFF; + --heading-color: rgb(229, 231, 235); + --code-background: #28282D; + --code-color: #f5f5f6; + --header-background: #0c1318; + --header-border: #9b9b9b; + --menu-item-hover-background: #2c2624; + --doc-tip-background: #2e293a; + --link-color: #c5eff7; + --search-background: #020202; + --nav-category: rgb(207, 211, 215); + --code-strings-color: #86b4b9; + --code-printf-color: #6B2FBA; + --code-escaped-color: #EA8675; + --code-identifiers-color: #d1b3f5; + --code-module-color: #15e1e1; + --code-reference-color: #40fddd; + --code-value-color: #ffb4e9; + --code-interface-color: #43AEC6; + --code-typearg-color: #43AEC6; + --code-disposable-color: #6dd6f1; + --code-property-color: #6acfe7; + --code-punctuation-color: #43AEC6; + --code-punctuation2-color: var(--text-color); + --code-function-color: #6B2FBA; + --code-function2-color: #cbda9d; + --code-activepattern-color: #4ec9b0; + --code-unioncase-color: #4ec9b0; + --code-enumeration-color: #8C6C41; + --code-keywords-color: #a7c2f8; + --code-comment-color: #84d16e; + --code-operators-color: #b4c6ee; + --code-numbers-color: #009999; + --code-linenumbers-color: #80b0b0; + --code-mutable-color: #1b6600; + --code-inactive-color: #808080; + --code-preprocessor-color: #af75c1; + --code-fsioutput-color: #808080; + --code-tooltip-color: #d1d1d1; +} + +/* CSS Reset, source: https://www.joshwcomeau.com/css/custom-css-reset/ */ +*, *::before, *::after { + box-sizing: border-box; +} + +* { + margin: 0; +} + +html { + overflow-y: hidden; +} body { - font-family: 'Hind Vadodara', sans-serif; - /* padding-top: 0px; - padding-bottom: 40px; -*/ + line-height: 1.5; + -webkit-font-smoothing: antialiased; } -blockquote { - margin: 0 1em 0 0.25em; - margin-top: 0px; - margin-right: 1em; - margin-bottom: 0px; - margin-left: 0.25em; - padding: 0 .75em 0 1em; - border-left: 1px solid #777; - border-right: 0px solid #777; +picture, video, canvas, svg { + display: block; + max-width: 100%; } -/* Format the heading - nicer spacing etc. */ -.masthead { - overflow: hidden; +input, button, textarea, select { + font: inherit; } - .masthead .muted a { - text-decoration: none; - color: #999999; - } +p, h1, h2, h3, h4, h5, h6 { + overflow-wrap: break-word; +} - .masthead ul, .masthead li { - margin-bottom: 0px; - } +/* Main layout */ +body { + font-family: var(--system-font); + background-color: var(--background); + color: var(--text-color); + line-height: var(--line-height); + scroll-padding-top: var(--header-height); + scroll-behavior: smooth; +} + +header { + background-color: var(--header-background); + padding: var(--spacing-300); + height: var(--header-height); + display: flex; + align-items: center; + justify-content: space-between; + position: sticky; + top: 0; + z-index: 100; + box-shadow: 0 1px 1px var(--shadow-color); + + & .start { + display: flex; + align-items: center; + + & #menu-toggle { + position: relative; + height: var(--spacing-500); + width: var(--spacing-500); + border: 1px solid var(--header-border); + border-radius: var(--radius); + box-shadow: 0 1px 1px var(--shadow-color); + + & .icon { + top: 4px; + left: 4px; + width: calc(var(--spacing-500) - 4px); + height: calc(var(--spacing-500) - 4px); + position: absolute; + color: var(--header-link-color); + + &.open { + display: none; + } + } + + & input[type=checkbox] { + position: absolute; + width: 100%; + height: 100%; + left: 0; + top: 0; + appearance: none; + cursor: pointer; + } + + & .menu { + visibility: hidden; + height: 0; + opacity: 0; + width: 100%; + transition: all 0.2s ease-in-out; + position: fixed; + top: var(--header-height); + left: 0; + background-color: var(--mobile-menu-background); + list-style: none; + padding: var(--spacing-300); + overflow-y: auto; + } + + & input:checked + .menu { + visibility: visible; + opacity: 1; + height: calc(100vh - var(--header-height)); + } + + &:has(input:checked) { + .icon.open { + display: block; + } + + .icon.closed { + display: none; + } + } + } - .masthead .nav li { - margin-top: 15px; - font-size: 110%; - } + > a { + display: flex; + justify-content: center; + align-items: center; + text-decoration: none; + color: var(--header-link-color); + } + + & img { + margin: 0 var(--spacing-200); + border-radius: var(--radius); + height: calc(var(--spacing-500) - 2px); + } - .masthead h3 { - margin-top: 15px; - margin-bottom: 5px; - font-size: 170%; + & strong { + line-height: var(--spacing-500); + font-size: var(--font-200); + display: block; + text-transform: var(--header-brand-text-transform); + font-weight: 500; + } } -/*-------------------------------------------------------------------------- - Formatting fsdocs-content -/*--------------------------------------------------------------------------*/ + & .end { + display: flex; + align-items: center; -/* Change font sizes for headings etc. */ -#fsdocs-content h1 { - margin: 30px 0px 15px 0px; - /* font-weight: 400; */ - font-size: 2rem; - letter-spacing: 1.78px; - line-height: 2.5rem; - font-weight: 400; -} + & a { + display: none; + color: var(--header-link-color); + } + + & > .themeToggle, & > .search { + cursor: pointer; + height: var(--spacing-500); + align-items: center; + margin: 0 var(--spacing-100); + } -#fsdocs-content h2 { - font-size: 1.6rem; - margin: 20px 0px 10px 0px; - font-weight: 400; + & > .search { + display: flex; + color: var(--header-link-color); + } + } } -#fsdocs-content h3 { - font-size: 1.2rem; - margin: 15px 0px 10px 0px; - font-weight: 400; +aside { + display: none; } -#fsdocs-content hr { - margin: 0px 0px 20px 0px; +main { + height: calc(100dvh - var(--header-height)); } -#fsdocs-content li { - font-size: 1.0rem; - line-height: 1.375rem; - letter-spacing: 0.01px; - font-weight: 500; - margin: 0px 0px 15px 0px; +#content { + padding: var(--spacing-300); + + > *:first-child { + margin-top: 0; + } } -#fsdocs-content p { - font-size: 1.0rem; - line-height: 1.375rem; - letter-spacing: 0.01px; - font-weight: 500; - color: #262626; +#fsdocs-page-menu { + display: none; + padding: var(--spacing-300); + background-color: var(--page-menu-background-color); + border-left: 1px solid var(--page-menu-background-border-color); + + &:has(.empty) { + display: none; + } + + > #on-this-page { + font-size: var(--font-100); + line-height: 1.5; + color: var(--on-this-page-color); + font-weight: 500; + margin: 0 0 var(--spacing-50); + } + + & ul { + list-style: none; + padding: 0; + margin: 0; + + & li { + border-left: 1px solid var(--header-border); + margin: 0; + + &:hover, &:focus { + border-color: var(--page-menu-background-hover-border-color); + } + + & a { + color: var(--menu-color); + text-decoration: none; + padding: var(--spacing-50) var(--spacing-100); + display: block; + overflow-x: hidden; + text-overflow: ellipsis; + } + + &.level-3 { + padding-left: var(--spacing-100); + } + + &.level-4 { + padding-left: var(--spacing-300); + } + } + } } -#fsdocs-content a { - color: #4974D1; +/* menu items */ +.menu { + padding: 0; + + & li { + list-style: none; + margin: 0; + } + + .nav-header { + margin-top: var(--spacing-300); + text-transform: uppercase; + font-size: var(--font-200); + font-weight: 500; + color: var(--menu-color); + } } -/* remove the default bootstrap bold on dt elements */ -#fsdocs-content dt { - font-weight: normal; + +.nav-header:first-child { + margin-top: 0; } +.nav-item { + border-left: 1px solid var(--nav-item-border-color); + & a { + color: var(--menu-color); + text-decoration: none; + font-size: var(--font-200); + padding: var(--spacing-100); + display: block; + overflow-x: hidden; + text-overflow: ellipsis; -/*-------------------------------------------------------------------------- - Formatting tables in fsdocs-content, using docs.microsoft.com tables -/*--------------------------------------------------------------------------*/ + &:hover { + background-color: var(--menu-item-hover-background); + color: var(--menu-item-hover-color); + } + } -#fsdocs-content .table { - table-layout: auto; - width: 100%; - font-size: 0.875rem; -} + &:hover, &.active { + border-color: var(--nav-item-active-border-color); + } - #fsdocs-content .table caption { - font-size: 0.8rem; + &.active { font-weight: 600; - letter-spacing: 2px; - text-transform: uppercase; - padding: 1.125rem; - border-width: 0 0 1px; - border-style: solid; - border-color: #e3e3e3; - text-align: right; - } - - #fsdocs-content .table td, - #fsdocs-content .table th { - display: table-cell; - word-wrap: break-word; - padding: 0.75rem 1rem 0.75rem 0rem; - line-height: 1.5; - vertical-align: top; - border-top: 1px solid #e3e3e3; - border-right: 0; - border-left: 0; - border-bottom: 0; - border-style: solid; } +} - /* suppress the top line on inner lists such as tables of exceptions */ - #fsdocs-content .table .fsdocs-exception-list td, - #fsdocs-content .table .fsdocs-exception-list th { - border-top: 0 +@media screen and (min-width: 768px) { + #menu-toggle { + display: none; } - #fsdocs-content .table td p:first-child, - #fsdocs-content .table th p:first-child { - margin-top: 0; + body { + display: grid; + grid-template-rows: var(--header-height) minmax(0, 1fr); + grid-template-columns:var(--body-grid-template-columns); + gap: 0; } - #fsdocs-content .table td.nowrap, - #fsdocs-content .table th.nowrap { - white-space: nowrap; + header { + border-bottom: 1px solid var(--header-border); + grid-row: 1; + grid-column: span 2; + box-shadow: none; + + & .end { + > a { + display: flex; + align-items: center; + text-decoration: none; + + &:hover { + color: var(--link-hover); + } + } + } } - #fsdocs-content .table td.is-narrow, - #fsdocs-content .table th.is-narrow { - width: 15%; + aside, main { + height: calc(100vh - var(--header-height)); } - #fsdocs-content .table th:not([scope='row']) { - border-top: 0; - border-bottom: 1px; + aside { + position: sticky; + top: var(--header-height); } - #fsdocs-content .table > caption + thead > tr:first-child > td, - #fsdocs-content .table > colgroup + thead > tr:first-child > td, - #fsdocs-content .table > thead:first-child > tr:first-child > td { - border-top: 0; + #fsdocs-main-menu { + display: block; + padding: var(--spacing-300) var(--spacing-500); + background-color: var(--aside-background); + width: var(--main-menu-width); + border-right: 1px solid var(--header-border); + grid-row: var(--main-menu-grid-row); + grid-column: var(--main-menu-grid-column); + overflow-y: auto; } - #fsdocs-content .table table-striped > tbody > tr:nth-of-type(odd) { - background-color: var(--box-shadow-light); + main { + grid-row: var(--main-grid-row); + grid-column: var(--main-grid-column); + box-shadow: inset 1px 1px var(--main-shadow-color); + border-radius: 0; } - #fsdocs-content .table.min { - width: unset; + #content { + padding-left: var(--spacing-300); + padding-right: var(--spacing-300); } +} - #fsdocs-content .table.is-left-aligned td:first-child, - #fsdocs-content .table.is-left-aligned th:first-child { - padding-left: 0; +@media screen and (min-width: 768px) { + #content { + max-width: calc(100vw - var(--main-menu-width) - var(--spacing-300) - var(--spacing-300)); + margin: 0 auto; } +} + +@media screen and (min-width: 960px) { + #content { + max-width: calc(var(--container-md) - var(--main-menu-width) - var(--spacing-300) - var(--spacing-300)); + } +} + +@media screen and (min-width: 1024px) { + #content { + max-width: calc(var(--container-lg) - var(--main-menu-width) - var(--spacing-300) - var(--spacing-300)); + } +} + +@media screen and (min-width: 1200px) { + body { + grid-template-columns: var(--body-grid-template-columns-xl); + + &.api-docs { + grid-template-columns: var(--body-grid-template-columns); - #fsdocs-content .table.is-left-aligned td:first-child a, - #fsdocs-content .table.is-left-aligned th:first-child a { - outline-offset: -0.125rem; + #content { + max-width: calc(var(--container-xl) - var(--main-menu-width) - var(--spacing-300) - var(--spacing-300)); + } + + #fsdocs-page-menu { + display: none; + } } + } -@media screen and (max-width: 767px), screen and (min-resolution: 120dpi) and (max-width: 767.9px) { - #fsdocs-content .table.is-stacked-mobile td:nth-child(1) { - display: block; - width: 100%; - padding: 1rem 0; + header { + grid-column: span 3; } - #fsdocs-content .table.is-stacked-mobile td:not(:nth-child(1)) { + #fsdocs-page-menu { + grid-column: 3; display: block; - border-width: 0; - padding: 0 0 1rem; + } + + #content { + max-width: calc(var(--container-xl) - var(--main-menu-width) - var(--page-menu-width) - var(--spacing-300) - var(--spacing-300)); } } -#fsdocs-content .table.has-inner-borders th, -#fsdocs-content .table.has-inner-borders td { - border-right: 1px solid #e3e3e3; +@media screen and (min-width: 1400px) { + body { + &.api-docs, &:has(#fsdocs-page-menu .empty) { + #content { + max-width: calc(var(--container-xxl) - var(--main-menu-width) - var(--spacing-300) - var(--spacing-300)); + } + } + } + + #content { + max-width: calc(var(--container-xxl) - var(--main-menu-width) - var(--page-menu-width) - var(--spacing-300) - var(--spacing-300)); + } } - #fsdocs-content .table.has-inner-borders th:last-child, - #fsdocs-content .table.has-inner-borders td:last-child { - border-right: none; +@media screen and (min-width: 1800px) { + body { + &.api-docs, &:has(#fsdocs-page-menu .empty) { + #content { + max-width: calc(var(--container-xxxl) - var(--main-menu-width) - var(--spacing-300) - var(--spacing-300)); + } + } } -.fsdocs-entity-list .fsdocs-entity-name { - width: 25%; - font-weight: bold; + #content { + max-width: calc(var(--container-xxxl) - var(--main-menu-width) - var(--page-menu-width) - var(--spacing-300) - var(--spacing-300)); + } } -.fsdocs-member-list .fsdocs-member-usage { - width: 35%; +/* Headings */ +h1, h2, h3, h4, h5, h6 { + font-family: var(--heading-font-family); } -/*-------------------------------------------------------------------------- - Formatting xmldoc sections in fsdocs-content -/*--------------------------------------------------------------------------*/ +h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { + color: var(--heading-color); + text-decoration: none; +} + +h1 { + font-size: var(--font-600); + line-height: var(--heading-line-height); + margin-bottom: var(--spacing-400); + margin-top: var(--spacing-50); +} -.fsdocs-xmldoc, .fsdocs-entity-xmldoc, .fsdocs-member-xmldoc { - font-size: 1.0rem; - line-height: 1.375rem; - letter-spacing: 0.01px; - font-weight: 500; - color: #262626; +h2 { + font-size: var(--font-500); + line-height: var(--heading-line-height); + margin-top: var(--spacing-400); + margin-bottom: var(--spacing-300); } -.fsdocs-xmldoc h1 { - font-size: 1.2rem; - margin: 10px 0px 0px 0px; +h3 { + font-size: var(--font-400); + line-height: var(--heading-line-height); + margin-top: var(--spacing-300); + margin-bottom: var(--spacing-200); } -.fsdocs-xmldoc h2 { - font-size: 1.2rem; - margin: 10px 0px 0px 0px; +h4 { + font-weight: bold; } -.fsdocs-xmldoc h3 { - font-size: 1.1rem; - margin: 10px 0px 0px 0px; +h4, h5, h6 { + font-size: var(--font-300); + margin-top: var(--spacing-200); + margin-bottom: var(--spacing-200); } -/* #fsdocs-nav .searchbox { - margin-top: 30px; - margin-bottom: 30px; -} */ +@media screen and (min-width: 768px) { + h1 { + font-size: var(--font-800); + margin-bottom: var(--spacing-400); + line-height: var(--heading-line-height); + } -#fsdocs-nav img.logo{ - width:90%; - /* height:140px; */ - /* margin:10px 0px 0px 20px; */ - margin-top:40px; - border-style:none; + h2 { + font-size: var(--font-700); + margin-top: var(--spacing-500); + margin-bottom: var(--spacing-400); + } + + h3 { + font-size: var(--font-600); + margin-top: var(--spacing-500); + margin-bottom: var(--spacing-200); + } + + h4 { + font-size: var(--font-500); + } + + h4, h5, h6 { + margin-top: var(--spacing-300); + } } -#fsdocs-nav input{ - /* margin-left: 20px; */ - margin-right: 20px; - margin-top: 20px; - margin-bottom: 20px; - width: 93%; - -webkit-border-radius: 0; - border-radius: 0; +/* Common items */ +a { + color: var(--link-color); } -#fsdocs-nav { - /* margin-left: -5px; */ - /* width: 90%; */ - font-size:0.95rem; +p { + line-height: 1.8; + margin-top: var(--spacing-300); } -#fsdocs-nav li.nav-header{ - /* margin-left: -5px; */ - /* width: 90%; */ - padding-left: 0; - color: #262626; - text-transform: none; - font-size:16px; - margin-top: 9px; - font-weight: bold; +ol, ul { + padding-left: var(--spacing-400); } -#fsdocs-nav a{ - padding-left: 0; - color: #6c6c6d; - /* margin-left: 5px; */ - /* width: 90%; */ +ol li, ul li { + margin: var(--spacing-100) 0; } -/*-------------------------------------------------------------------------- - Formatting pre and code sections in fsdocs-content (code highlighting is - further below) -/*--------------------------------------------------------------------------*/ +img { + max-width: 100%; +} -#fsdocs-content code { - /* font-size: 0.83rem; */ - font: 0.85rem 'Roboto Mono', monospace; - background-color: #f7f7f900; - border: 0px; - padding: 0px; - /* word-wrap: break-word; */ - /* white-space: pre; */ +#content > table { + margin: var(--spacing-300) 0; } -/* omitted */ -#fsdocs-content span.omitted { - background: #3c4e52; - border-radius: 5px; - color: #808080; - padding: 0px 0px 1px 0px; +blockquote { + border-left: var(--spacing-50) solid var(--primary); + margin: var(--spacing-200) 0; + margin-left: var(--spacing-200); + padding: var(--spacing-100) var(--spacing-300); + background-color: var(--blockquote-bacground-color); + color: var(--blockquote-color); + + > p { + margin: 0; + padding: 0; + } } -#fsdocs-content pre .fssnip code { - font: 0.86rem 'Roboto Mono', monospace; +@media screen and (min-width: 768px) { + blockquote { + margin-left: var(--spacing-400); + } } -#fsdocs-content table.pre, -#fsdocs-content pre.fssnip, -#fsdocs-content pre { - line-height: 13pt; - border: 0px solid #d8d8d8; - border-top: 0px solid #e3e3e3; - border-collapse: separate; - white-space: pre; - font: 0.86rem 'Roboto Mono', monospace; - width: 100%; - margin: 10px 0px 20px 0px; - background-color: #f3f4f7; - padding: 10px; - border-radius: 5px; - color: #8e0e2b; - max-width: none; - box-sizing: border-box; +/* Code snippets */ + +/* reset browser style */ +pre { + margin: 0; + padding: 0; } -#fsdocs-content pre.fssnip code { - font: 0.86rem 'Roboto Mono', monospace; - font-weight: 600; +code, table.pre, pre { + background-color: var(--code-background); + color: var(--code-color); + font-family: var(--monospace-font); + font-variant-ligatures: none; + font-size: var(--font-200); + -webkit-text-size-adjust: 100%; } -#fsdocs-content table.pre { - background-color: #fff7ed; +h1 code, h2 code, h3 code, h4 code, h5 code, h6 code { + font-size: inherit; } -#fsdocs-content table.pre pre { - padding: 0px; - margin: 0px; - border-radius: 0px; - width: 100%; - background-color: #fff7ed; - color: #837b79; +table.pre, #content > pre.fssnip { + border: 1px solid var(--code-fence-border-color); } -#fsdocs-content table.pre td { - padding: 0px; - white-space: normal; - margin: 0px; - width: 100%; +table.pre, pre.fssnip.highlighted { + margin: var(--spacing-300) 0; + padding: var(--spacing-200); } -#fsdocs-content table.pre td.lines { - width: 30px; +table.pre .snippet pre.fssnip { + padding: 0; + margin: 0; } +p > code, li > code { + padding: 2px var(--spacing-50); +} -#fsdocs-content pre { - word-wrap: inherit; +table.pre, pre > code { + display: block; } -.fsdocs-example-header { - font-size: 1.0rem; - line-height: 1.375rem; - letter-spacing: 0.01px; - font-weight: 700; - color: #262626; +pre.fssnip > code { + max-width: initial; + margin-bottom: initial; } -/*-------------------------------------------------------------------------- - Formatting github source links -/*--------------------------------------------------------------------------*/ +/* avoid problems with transparent background colors */ +pre.fssnip.highlighted > code, table.pre .fssnip, table.pre .fssnip code { + background-color: transparent; +} -.fsdocs-source-link { - float: right; - text-decoration: none; +/* Custom scrollbar styling */ +body, aside, #menu-toggle .menu, table.pre, code, +.fsdocs-entity-xmldoc > div > pre, div.fsdocs-summary > pre, +dialog ul, div.fsdocs-tip, .fsdocs-xmldoc > pre { + overflow-x: auto; + max-width: 100%; + + &::-webkit-scrollbar { + height: var(--spacing-100); + width: var(--spacing-100); + } + + &::-webkit-scrollbar-track { + background-color: var(--scrollbar-track-background); + border: 1px solid var(--scrollbar-track-border); + } + + &::-webkit-scrollbar-thumb { + background-color: var(--scrollbar-thumb-background); + } } - .fsdocs-source-link img { - border-style: none; - margin-left: 10px; - width: auto; - height: 1.4em; +body, aside, #menu-toggle .menu, table.pre, code, +.fsdocs-entity-xmldoc > div > pre, div.fsdocs-summary > pre, +dialog ul, div.fsdocs-tip, .fsdocs-xmldoc > pre { + @media screen and (min-width: 768px) { + &::-webkit-scrollbar { + height: var(--spacing-200); + width: var(--spacing-300); + } } +} - .fsdocs-source-link .hover { - display: none; +table.pre, code, pre.fssnip { + border-radius: var(--radius); +} + +/* Code coloring */ +.param-name, +.return-name, +.param { + font-weight: 900; + font-size: var(--font-100); + font-family: var(--monospace-font); + font-variant-ligatures: none; +} + +.fssnip { + /* strings --- and stlyes for other string related formats */ + + & span.s { + color: var(--code-strings-color); } - .fsdocs-source-link:hover .hover { - display: block; + /* printf formatters */ + + & span.pf { + color: var(--code-printf-color); } - .fsdocs-source-link .normal { - display: block; + /* escaped chars */ + + & span.e { + color: var(--code-escaped-color); } - .fsdocs-source-link:hover .normal { - display: none; + /* identifiers --- and styles for more specific identifier types */ + + & span.id { + color: var(--code-identifiers-color);; } -/*-------------------------------------------------------------------------- - Formatting logo -/*--------------------------------------------------------------------------*/ + /* module */ -#fsdocs-logo { - width:140px; - height:140px; - margin:10px 0px 0px 0px; - border-style:none; -} + & span.m { + color: var(--code-module-color); + } -/*-------------------------------------------------------------------------- - -/*--------------------------------------------------------------------------*/ + /* reference type */ -#fsdocs-content table.pre pre { - padding: 0px; - margin: 0px; - border: none; -} + & span.rt { + color: var(--code-reference-color); + } -/*-------------------------------------------------------------------------- - Remove formatting from links -/*--------------------------------------------------------------------------*/ - -#fsdocs-content h1 a, -#fsdocs-content h1 a:hover, -#fsdocs-content h1 a:focus, -#fsdocs-content h2 a, -#fsdocs-content h2 a:hover, -#fsdocs-content h2 a:focus, -#fsdocs-content h3 a, -#fsdocs-content h3 a:hover, -#fsdocs-content h3 a:focus, -#fsdocs-content h4 a, -#fsdocs-content h4 a:hover, #fsdocs-content -#fsdocs-content h4 a:focus, -#fsdocs-content h5 a, -#fsdocs-content h5 a:hover, -#fsdocs-content h5 a:focus, -#fsdocs-content h6 a, -#fsdocs-content h6 a:hover, -#fsdocs-content h6 a:focus { - color: #262626; - text-decoration: none; - text-decoration-style: none; - /* outline: none */ -} + /* value type */ -/*-------------------------------------------------------------------------- - Formatting for F# code snippets -/*--------------------------------------------------------------------------*/ + & span.vt { + color: var(--code-value-color); + } -.fsdocs-param-name, -.fsdocs-return-name, -.fsdocs-param { - font-weight: 900; - font-size: 0.85rem; - font-family: 'Roboto Mono', monospace; -} -/* strings --- and stlyes for other string related formats */ -#fsdocs-content span.s { - color: #dd1144; -} -/* printf formatters */ -#fsdocs-content span.pf { - color: #E0C57F; -} -/* escaped chars */ -#fsdocs-content span.e { - color: #EA8675; -} + /* interface */ -/* identifiers --- and styles for more specific identifier types */ -#fsdocs-content span.id { - color: #262626; -} -/* module */ -#fsdocs-content span.m { - color: #009999; -} -/* reference type */ -#fsdocs-content span.rt { - color: #4974D1; -} -/* value type */ -#fsdocs-content span.vt { - color: #43AEC6; -} -/* interface */ -#fsdocs-content span.if { - color: #43AEC6; -} -/* type argument */ -#fsdocs-content span.ta { - color: #43AEC6; -} -/* disposable */ -#fsdocs-content span.d { - color: #43AEC6; -} -/* property */ -#fsdocs-content span.prop { - color: #43AEC6; -} -/* punctuation */ -#fsdocs-content span.p { - color: #43AEC6; -} -#fsdocs-content span.pn { - color: #262626; -} -/* function */ -#fsdocs-content span.f { - color: #e1e1e1; -} -#fsdocs-content span.fn { - color: #990000; -} -/* active pattern */ -#fsdocs-content span.pat { - color: #4ec9b0; -} -/* union case */ -#fsdocs-content span.u { - color: #4ec9b0; -} -/* enumeration */ -#fsdocs-content span.e { - color: #4ec9b0; -} -/* keywords */ -#fsdocs-content span.k { - color: #b68015; - /* font-weight: bold; */ -} -/* comment */ -#fsdocs-content span.c { - color: #808080; - font-weight: 400; - font-style: italic; + & span.if { + color: var(--code-interface-color); + } + + /* type argument */ + + & span.ta { + color: var(--code-typearg-color); + } + + /* disposable */ + + & span.d { + color: var(--code-disposable-color); + } + + /* property */ + + & span.prop { + color: var(--code-property-color); + } + + /* punctuation */ + + & span.p { + color: var(--code-punctuation-color); + } + + & span.pn { + color: var(--code-punctuation2-color); + } + + /* function */ + + & span.f { + color: var(--code-function-color); + } + + & span.fn { + color: var(--code-function2-color); + } + + /* active pattern */ + + & span.pat { + color: var(--code-activepattern-color); + } + + /* union case */ + + & span.u { + color: var(--code-unioncase-color); + } + + /* enumeration */ + + & span.e { + color: var(--code-enumeration-color); + } + + /* keywords */ + + & span.k { + color: var(--code-keywords-color); + } + + /* comment */ + + & span.c { + color: var(--code-comment-color); + font-weight: 400; + font-style: italic; + } + + /* operators */ + + & span.o { + color: var(--code-operators-color); + } + + /* numbers */ + + & span.n { + color: var(--code-numbers-color); + } + + /* line number */ + + & span.l { + color: var(--code-linenumbers-color); + } + + /* mutable var or ref cell */ + + & span.v { + color: var(--code-mutable-color); + font-weight: bold; + } + + /* inactive code */ + + & span.inactive { + color: var(--code-inactive-color); + } + + /* preprocessor */ + + & span.prep { + color: var(--code-preprocessor-color); + } + + /* fsi output */ + + & span.fsi { + color: var(--code-fsioutput-color); + } } -/* operators */ -#fsdocs-content span.o { - color: #af75c1; + +/* tooltips */ +div.fsdocs-tip { + z-index: 1000; + display: none; + background-color: var(--doc-tip-background); + border-radius: var(--radius); + border: 1px solid var(--header-border); + padding: var(--spacing-200); + font-family: var(--monospace-font); + font-variant-ligatures: none; + color: var(--code-color); + box-shadow: 0 1px 1px var(--shadow-color); + + & code { + color: var(--code-color); + } } -/* numbers */ -#fsdocs-content span.n { - color: #009999; + +span[onmouseout] { + cursor: pointer; } -/* line number */ -#fsdocs-content span.l { - color: #80b0b0; + +/* API docs */ +#content > div > h2:first-child { + margin-top: 0; } -/* mutable var or ref cell */ -#fsdocs-content span.v { - color: #d1d1d1; - font-weight: bold; + +.fsdocs-xmldoc { + & pre { + overflow-x: auto; + } } -/* inactive code */ -#fsdocs-content span.inactive { - color: #808080; + +.table { + width: 100%; + table-layout: fixed; + + & thead tr td { + font-weight: bold; + padding: var(--spacing-400) 0; + } + + & tr { + display: flex; + flex-flow: row wrap; + column-gap: var(--spacing-300); + + & td:first-of-type { + flex: 25 0 0; + min-width: var(--api-docs-first-column-min-width); + overflow-x: hidden; + text-overflow: ellipsis; + overflow-wrap: break-word; + + & p { + margin: unset; + } + } + + & td:nth-of-type(2) { + flex: 75 0 0; + min-width: var(--api-docs-second-column-min-width); + } + } + + & tbody td { + border-top: 1px solid var(--header-border); + padding: var(--spacing-300) 0; + } + + .fsdocs-entity-xmldoc { + > div { + display: flex; + flex-direction: row-reverse; + justify-content: flex-start; + align-items: flex-start; + + & p.fsdocs-summary { + margin: 0; + flex-grow: 1; + } + + & pre { + margin-bottom: var(--spacing-200); + padding: var(--spacing-50); + flex-grow: 1; + overflow-x: auto; + } + } + } + + .fsdocs-member-xmldoc { + & summary { + display: list-item; + counter-increment: list-item 0; + list-style: disclosure-closed outside; + cursor: pointer; + margin-left: var(--spacing-300); + + > .fsdocs-summary { + display: flex; + flex-direction: row-reverse; + justify-content: flex-start; + align-items: flex-start; + + & p.fsdocs-summary { + margin: 0; + flex-grow: 1; + } + + & pre { + margin-bottom: var(--spacing-200); + padding: var(--spacing-50); + flex-grow: 1; + overflow-x: auto; + } + } + } + + & details[open] summary { + list-style-type: disclosure-open; + margin-bottom: var(--spacing-200); + } + + .fsdocs-returns, .fsdocs-params { + margin: var(--spacing-200); + + &:first-child { + margin-top: 0; + } + + &:last-child { + margin-bottom: 0; + } + } + + .fsdocs-return-name, .fsdocs-param-name { + font-weight: 500; + } + } } -/* preprocessor */ -#fsdocs-content span.prep { - color: #af75c1; + +.fsdocs-source-link { + display: none; + padding: 0 var(--spacing-100); + color: var(--text-color); + cursor: pointer; + height: var(--font-500); + width: var(--font-500); + margin: 0 var(--spacing-50); + + &:hover { + color: var(--primary); + } } -/* fsi output */ -#fsdocs-content span.fsi { - color: #808080; + +@media screen and (min-width: 768px) { + .fsdocs-source-link { + display: block; + } } -/* tool tip */ -div.fsdocs-tip { - background: #475b5f; - border-radius: 4px; - font: 0.85rem 'Roboto Mono', monospace; - padding: 6px 8px 6px 8px; - display: none; - color: #d1d1d1; - pointer-events: none; +/* Search */ +::backdrop { + background-color: #020202; + opacity: 0.5; } - div.fsdocs-tip code { - color: #d1d1d1; - font: 0.85rem 'Roboto Mono', monospace; +dialog { + background-color: var(--dialog-background-color); + margin: var(--spacing-700) auto; + padding: var(--spacing-100); + border: none; + opacity: 0; + visibility: hidden; + transition: all 0.2s ease-in-out; + border-radius: var(--radius); + width: var(--dialog-width); + + &[open] { + opacity: 1; + visibility: visible; + } + + & input[type=search] { + margin: 0; + display: block; + width: 100%; + padding: var(--spacing-200); + outline: 1px solid var(--primary); + border-radius: var(--radius); + border: none; + + &::placeholder { + font-size: var(--font-400); + } } + .empty { + color: var(--dialog-empty-color); + text-align: center; + font-size: var(--font-100); + margin: var(--spacing-100); + margin-bottom: 0; + } + + & ul { + overflow-y: auto; + max-height: calc(50vh - var(--spacing-700) - var(--spacing-700)); + list-style: none; + padding: 0; + + & li { + margin: 0; + border-bottom: 1px solid var(--header-border); + + &:hover { + & a, & a iconify-icon { + background-color: var(--dialog-link-hover-background-color); + color: var(--dialog-link-hover-color); + } + } + + & a { + display: flex; + padding: var(--spacing-300); + overflow-x: hidden; + color: var(--dialog-link-color); + + & iconify-icon { + color: var(--dialog-icon-color); + width: 24px; + margin-right: var(--spacing-200); + } + } + } + } +} + +/* Variables don't seem to work on ::backdrop */ +[data-theme=dark] { + ::backdrop { + opacity: 0.75; + } +} diff --git a/content/fsdocs-search.js b/content/fsdocs-search.js index 3d543cf3..9e4c21de 100755 --- a/content/fsdocs-search.js +++ b/content/fsdocs-search.js @@ -1,84 +1,126 @@ -var lunrIndex, pagesIndex; +import Fuse from "https://esm.sh/fuse.js@7.0.0"; -function endsWith(str, suffix) { - return str.indexOf(suffix, str.length - suffix.length) !== -1; +const searchBtn = document.querySelector("#search-btn"); + +function hideSearchBtn() { + // Hide search icon if we can't search in the first place. + searchBtn.style.display = 'none'; } -// Initialize lunrjs using our generated index file -function initLunr() { - if (!endsWith(fsdocs_search_baseurl,"/")){ - fsdocs_search_baseurl = fsdocs_search_baseurl+'/' +function debounce(mainFunction, delay) { + // Declare a variable called 'timer' to store the timer ID + let timer; + + // Return an anonymous function that takes in any number of arguments + return function (...args) { + // Clear the previous timer to prevent the execution of 'mainFunction' + clearTimeout(timer); + + // Set a new timer that will execute 'mainFunction' after the specified delay + timer = setTimeout(() => { + mainFunction(...args); + }, delay); }; +} - // First retrieve the index file - $.getJSON(fsdocs_search_baseurl +"index.json") - .done(function(index) { - pagesIndex = index; - // Set up lunrjs by declaring the fields we use - // Also provide their boost level for the ranking - lunrIndex = lunr(function() { - this.ref("uri"); - this.field('title', { - boost: 15 - }); - this.field('tags', { - boost: 10 - }); - this.field("content", { - boost: 5 - }); - - this.pipeline.remove(lunr.stemmer); - this.searchPipeline.remove(lunr.stemmer); - - // Feed lunr with each file and let lunr actually index them - pagesIndex.forEach(function(page) { - this.add(page); - }, this); - }) +const root = document.documentElement.getAttribute("data-root"); +if (root && searchBtn) { + let fuse = null; + const searchIndexUrl = `${root}/index.json`; + fetch(searchIndexUrl, {}) + .then(response => response.json()) + .then(index => { + fuse = new Fuse(index, { + includeScore: true, + keys: ['uri', 'title', 'content', 'headings'], + includeMatches: true, + limit: 20, + ignoreLocation: true, + threshold: 0.6, + minMatchCharLength: 2, + ignoreFieldNorm: true, + shouldSort: true + }); + }) + .catch(() => { + hideSearchBtn(); }) - .fail(function(jqxhr, textStatus, error) { - var err = textStatus + ", " + error; - console.error("Error getting Hugo index file:", err); - }); -} -/** - * Trigger a search in lunr and transform the result - * - * @param {String} query - * @return {Array} results - */ -function search(queryTerm) { - // Find the item in our index corresponding to the lunr one to have more info - return lunrIndex.search(queryTerm+"^100"+" "+queryTerm+"*^10"+" "+"*"+queryTerm+"^10"+" "+queryTerm+"~2^1").map(function(result) { - return pagesIndex.filter(function(page) { - return page.uri === result.ref; - })[0]; - }); -} + const searchDialog = document.querySelector("dialog"); + const empty = document.querySelector("dialog .empty"); + const resultsElement = document.querySelector("dialog ul"); + const searchBox = document.querySelector("dialog input[type=search]"); + + searchBtn.addEventListener("click", () => { + searchDialog.showModal(); + }) -// Let's get started -initLunr(); - -$( document ).ready(function() { - var searchList = new autoComplete({ - /* selector for the search box element */ - minChars: 1, - selector: $("#search-by").get(0), - /* source is the callback to perform the search */ - source: function(term, response) { - response(search(term)); - }, - /* renderItem displays individual search results */ - renderItem: function(item, search) { - search = search.replace(/[-\/\\^$*+?.()|[\]{}]/g, '\\$&'); - var re = new RegExp("(" + search.split(' ').join('|') + ")", "gi"); - return '
' + item.title.replace(re, "$1") + '
'; - }, - /* onSelect callback fires when a search suggestion is chosen */ - onSelect: function(e, term, item) { - location.href = item.getAttribute('data-uri'); + searchDialog.addEventListener("click", ev => { + if (ev.target.tagName === "DIALOG") { + searchBox.value = ''; + searchDialog.close() + } + }) + + function searchAux(searchTerm) { + if (!fuse) return; + + const results = fuse.search(searchTerm); + if (results.length === 0) { + clearResults(); + empty.textContent = "No results were found"; + } else { + if (location.hostname === 'localhost'){ + console.table(results); + } + + empty.style.display = 'none'; + const newResultNodes = + results + .map(result => { + const item = result.item; + const li = document.createElement("li"); + const a = document.createElement("a"); + a.setAttribute("href", item.uri); + const icon = document.createElement("iconify-icon"); + icon.setAttribute("width", "24"); + icon.setAttribute("height", "24"); + icon.setAttribute("icon", item.type === "content" ? "iconoir:page" : "bxs:file-doc") + a.append(icon, item.title); + li.appendChild(a); + return li; + }); + resultsElement.replaceChildren(...newResultNodes); + } + } + + const search = debounce(searchAux, 250); + + function clearResults() { + empty.style.display = 'block'; + resultsElement.replaceChildren(); + } + + searchBox.addEventListener('keyup', ev => { + ev.stopPropagation(); + const searchTerm = ev.target.value; + if (!searchTerm) { + empty.textContent = "Type something to start searching."; + clearResults(); + } else { + search(searchTerm); } }); -}); + + window.addEventListener('keyup', ev => { + if (ev.key === 'Escape' && searchDialog.open) { + searchDialog.close(); + } + + if (ev.key === '/' && !searchDialog.open) { + searchDialog.showModal(); + } + }) +} else { + hideSearchBtn(); +} diff --git a/content/fsdocs-theme-set-dark.js b/content/fsdocs-theme-set-dark.js new file mode 100755 index 00000000..b6eeaba3 --- /dev/null +++ b/content/fsdocs-theme-set-dark.js @@ -0,0 +1,5 @@ +const prefersDark = window.matchMedia("@media (prefers-color-scheme: dark)").matches; +let currentTheme = localStorage.getItem('theme') ?? (prefersDark ? 'dark' : 'light'); +if (currentTheme === 'dark') { + window.document.documentElement.setAttribute("data-theme", 'dark'); +} diff --git a/content/fsdocs-theme-toggle.js b/content/fsdocs-theme-toggle.js new file mode 100755 index 00000000..5e32f9e3 --- /dev/null +++ b/content/fsdocs-theme-toggle.js @@ -0,0 +1,38 @@ +import {LitElement, html, css} from 'https://cdn.jsdelivr.net/gh/lit/dist@3/core/lit-core.min.js'; + +const prefersDark = window.matchMedia("@media (prefers-color-scheme: dark)").matches; +let currentTheme = localStorage.getItem('theme') ?? (prefersDark ? 'dark' : 'light'); + +export class ThemeToggle extends LitElement { + static properties = { + _theme: {state: true, type: String}, + }; + + constructor() { + super(); + this._theme = currentTheme; + } + + static styles = css` + :host { + cursor: pointer; + box-sizing: border-box; + transform: translateY(3px); + } + `; + + changeTheme() { + this._theme = this._theme === 'light' ? 'dark' : 'light'; + localStorage.setItem('theme', this._theme); + window.document.documentElement.setAttribute("data-theme", this._theme); + } + + render() { + const icon = this._theme === 'light' ? 'basil:moon-solid' : 'basil:sun-solid'; + return html` + + `; + } +} + +customElements.define('fsdocs-theme-toggle', ThemeToggle); diff --git a/content/fsdocs-theme.css b/content/fsdocs-theme.css new file mode 100755 index 00000000..cd0e6a97 --- /dev/null +++ b/content/fsdocs-theme.css @@ -0,0 +1 @@ +/* Override any variables here */ \ No newline at end of file diff --git a/content/fsdocs-theme.js b/content/fsdocs-theme.js new file mode 100755 index 00000000..eea7d521 --- /dev/null +++ b/content/fsdocs-theme.js @@ -0,0 +1,35 @@ +// Automatically scroll to the active aside menu item. +const mainMenu = document.getElementById('fsdocs-main-menu'); +function scrollToActiveItem(activeItem) { + const halfMainMenuHeight = mainMenu.offsetHeight / 2 + if(activeItem.offsetTop > halfMainMenuHeight){ + mainMenu.scrollTop = (activeItem.offsetTop - halfMainMenuHeight) - (activeItem.offsetHeight / 2); + } +} + +const activeItem = document.querySelector("aside .nav-item.active"); +if (activeItem && mainMenu) { + scrollToActiveItem(activeItem); +} + +function scrollToAndExpandSelectedMember() { + if (location.hash) { + const details = document.querySelector(`tr > td.fsdocs-member-usage:has(a[href='${location.hash}']) ~ td.fsdocs-member-xmldoc > details`); + details?.setAttribute('open', 'true'); + const header = document.querySelector(`a[href='${location.hash}']`); + header?.scrollIntoView({ behavior: 'instant'}); + } +} + +scrollToAndExpandSelectedMember(); +addEventListener('hashchange', scrollToAndExpandSelectedMember); + +if(location.pathname.startsWith('/reference/')) { + // Scroll to API Reference header + const navHeaders = document.querySelectorAll(".nav-header"); + for (const navHeader of navHeaders) { + if (navHeader.textContent && navHeader.textContent.trim() === 'API Reference') { + scrollToActiveItem(navHeader); + } + } +} \ No newline at end of file diff --git a/content/fsdocs-tips.js b/content/fsdocs-tips.js index bcd04cb1..787e183f 100755 --- a/content/fsdocs-tips.js +++ b/content/fsdocs-tips.js @@ -1,54 +1,59 @@ -var currentTip = null; -var currentTipElement = null; +let currentTip = null; +let currentTipElement = null; function hideTip(evt, name, unique) { - var el = document.getElementById(name); + const el = document.getElementById(name); el.style.display = "none"; currentTip = null; } -function findPos(obj) { - // no idea why, but it behaves differently in webbrowser component - if (window.location.search == "?inapp") - return [obj.offsetLeft + 10, obj.offsetTop + 30]; - - var curleft = 0; - var curtop = obj.offsetHeight; - while (obj) { - curleft += obj.offsetLeft; - curtop += obj.offsetTop; - obj = obj.offsetParent; - }; - return [curleft, curtop]; -} - function hideUsingEsc(e) { - if (!e) { e = event; } hideTip(e, currentTipElement, currentTip); } function showTip(evt, name, unique, owner) { document.onkeydown = hideUsingEsc; - if (currentTip == unique) return; + if (currentTip === unique) return; currentTip = unique; currentTipElement = name; - var pos = findPos(owner ? owner : (evt.srcElement ? evt.srcElement : evt.target)); - var posx = pos[0]; - var posy = pos[1]; + const offset = 20; + let x = evt.clientX; + let y = evt.clientY + offset; - var el = document.getElementById(name); - var parent = (document.documentElement == null) ? document.body : document.documentElement; + const el = document.getElementById(name); el.style.position = "absolute"; - el.style.left = posx + "px"; - el.style.top = posy + "px"; el.style.display = "block"; + el.style.left = `${x}px`; + el.style.top = `${y}px`; + const maxWidth = document.documentElement.clientWidth - x - 16; + el.style.maxWidth = `${maxWidth}px`; + + const rect = el.getBoundingClientRect(); + // Move tooltip if it is out of sight + if(rect.bottom > window.innerHeight) { + y = y - el.clientHeight - offset; + el.style.top = `${y}px`; + } + + if (rect.right > window.innerWidth) { + x = y - el.clientWidth - offset; + el.style.left = `${x}px`; + const maxWidth = document.documentElement.clientWidth - x - 16; + el.style.maxWidth = `${maxWidth}px`; + } } + function Clipboard_CopyTo(value) { - var tempInput = document.createElement("input"); + const tempInput = document.createElement("input"); tempInput.value = value; document.body.appendChild(tempInput); tempInput.select(); document.execCommand("copy"); document.body.removeChild(tempInput); -} \ No newline at end of file +} + +window.showTip = showTip; +window.hideTip = hideTip; +// Used by API documentation +window.Clipboard_CopyTo = Clipboard_CopyTo; \ No newline at end of file diff --git a/content/img/copy-md-hover.png b/content/img/copy-md-hover.png deleted file mode 100755 index b14e9412..00000000 Binary files a/content/img/copy-md-hover.png and /dev/null differ diff --git a/content/img/copy-md.png b/content/img/copy-md.png deleted file mode 100755 index 72de7381..00000000 Binary files a/content/img/copy-md.png and /dev/null differ diff --git a/content/img/copy-xml-hover.png b/content/img/copy-xml-hover.png deleted file mode 100755 index 60fea167..00000000 Binary files a/content/img/copy-xml-hover.png and /dev/null differ diff --git a/content/img/copy-xml.png b/content/img/copy-xml.png deleted file mode 100755 index e5606b90..00000000 Binary files a/content/img/copy-xml.png and /dev/null differ diff --git a/content/img/github-hover.png b/content/img/github-hover.png deleted file mode 100755 index 65971d4d..00000000 Binary files a/content/img/github-hover.png and /dev/null differ diff --git a/content/img/github-pages-settings.png b/content/img/github-pages-settings.png new file mode 100755 index 00000000..a7657705 Binary files /dev/null and b/content/img/github-pages-settings.png differ diff --git a/content/img/github.png b/content/img/github.png deleted file mode 100755 index ff34f354..00000000 Binary files a/content/img/github.png and /dev/null differ diff --git a/content/navbar-fixed-left.css b/content/navbar-fixed-left.css deleted file mode 100755 index 2de6255a..00000000 --- a/content/navbar-fixed-left.css +++ /dev/null @@ -1,77 +0,0 @@ -body { - padding-top: 90px; -} - -@media (min-width: 768px) { - body { - padding-top: 0; - } -} - -@media (min-width: 768px) { - body { - margin-left: 252px; - } -} -.navbar { - overflow-y: auto; - overflow-x: hidden; - box-shadow: none; -} -.navbar.fixed-left { - position: fixed; - top: 0; - left: 0; - right: 0; - z-index: 1030; -} -.navbar-nav .nav-link { - padding-top: 0.3rem; - padding-bottom: 0.3rem; -} - -@media (min-width: 768px) { - .navbar.fixed-left { - bottom: 0; - width: 252px; - flex-flow: column nowrap; - align-items: flex-start; - } - - .navbar.fixed-left .navbar-collapse { - flex-grow: 0; - flex-direction: column; - width: 100%; - } - - .navbar.fixed-left .navbar-collapse .navbar-nav { - flex-direction: column; - width: 100%; - } - - .navbar.fixed-left .navbar-collapse .navbar-nav .nav-item { - width: 100%; - } - - .navbar.fixed-left .navbar-collapse .navbar-nav .nav-item .dropdown-menu { - top: 0; - } -} - -@media (min-width: 768px) { - .navbar.fixed-left { - right: auto; - } - - .navbar.fixed-left .navbar-nav .nav-item .dropdown-toggle:after { - border-top: 0.3em solid transparent; - border-left: 0.3em solid; - border-bottom: 0.3em solid transparent; - border-right: none; - vertical-align: baseline; - } - - .navbar.fixed-left .navbar-nav .nav-item .dropdown-menu { - left: 100%; - } -} diff --git a/content/navbar-fixed-right.css b/content/navbar-fixed-right.css deleted file mode 100755 index ad6cef83..00000000 --- a/content/navbar-fixed-right.css +++ /dev/null @@ -1,78 +0,0 @@ -body { - padding-top: 90px; -} - -@media (min-width: 768px) { - body { - padding-top: 0; - } -} - -@media (min-width: 768px) { - body { - margin-right: 252px; - } -} - -.navbar { - overflow-y: auto; - overflow-x: hidden; - box-shadow: none; -} -.navbar.fixed-right { - position: fixed; - top: 0; - left: 0; - right: 0; - z-index: 1030; -} -.navbar-nav .nav-link { - padding-top: 0.3rem; - padding-bottom: 0.3rem; -} -@media (min-width: 768px) { - .navbar.fixed-right { - bottom: 0; - width: 252px; - flex-flow: column nowrap; - align-items: flex-start; - } - - .navbar.fixed-right .navbar-collapse { - flex-grow: 0; - flex-direction: column; - width: 100%; - } - - .navbar.fixed-right .navbar-collapse .navbar-nav { - flex-direction: column; - width: 100%; - } - - .navbar.fixed-right .navbar-collapse .navbar-nav .nav-item { - width: 100%; - } - - .navbar.fixed-right .navbar-collapse .navbar-nav .nav-item .dropdown-menu { - top: 0; - } -} - -@media (min-width: 768px) { - .navbar.fixed-right { - left: auto; - } - - .navbar.fixed-right .navbar-nav .nav-item .dropdown-toggle:after { - border-top: 0.3em solid transparent; - border-left: none; - border-bottom: 0.3em solid transparent; - border-right: 0.3em solid; - vertical-align: baseline; - } - - .navbar.fixed-right .navbar-nav .nav-item .dropdown-menu { - left: auto; - right: 100%; - } -} diff --git a/index.html b/index.html index 80ee15fc..71153a83 100644 --- a/index.html +++ b/index.html @@ -1,209 +1,293 @@ - - - - - - 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
+ + +
+ + Header menu logo + FsSpreadsheet + + +
+ + + + + +
+ + +
+
+

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 member AddWorksheet: sheet: FsWorksheet -> unit - member AddWorksheets: sheets: seq<FsWorksheet> -> unit + member AddWorksheets: sheets: FsWorksheet seq -> unit member Copy: unit -> FsWorkbook - member GetTables: unit -> FsTable[] + member GetTables: unit -> FsTable array member GetWorksheetAt: index: int -> FsWorksheet member GetWorksheetByName: sheetName: string -> FsWorksheet member GetWorksheets: unit -> ResizeArray<FsWorksheet> 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
- -
- - - - - - - - - - + </summary>

--------------------
new: unit -> FsWorkbook +
static member FsWorkbook.fromXlsxFile: filePath: string -> FsWorkbook
+
val newPath: string
+
member FsWorkbook.ToXlsxFile: path: string -> unit
+ + +
+ + + +
+ +

Type something to start searching.

+
+
+ + + + + + \ No newline at end of file diff --git a/index.json b/index.json index e55b3c14..6c732654 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 \nColumn \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.ColumnNumber \nColumnNumber \nFsAddress.FixedRow \nFixedRow \nFsAddress.FixedColumn \nFixedColumn \nFsAddress.RowNumber \nRowNumber \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#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#FixedColumn","title":"FsAddress.FixedColumn","content":"FsAddress.FixedColumn \nFixedColumn \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsaddress.html#RowNumber","title":"FsAddress.RowNumber","content":"FsAddress.RowNumber \nRowNumber \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.MaxRowNumber \nMaxRowNumber \nFsCellsCollection.Count \nCount \nFsCellsCollection.MaxColumnNumber \nMaxColumnNumber \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#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#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#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.Cells \nCells \nFsColumn.MinRowIndex \nMinRowIndex \nFsColumn.Index \nIndex \nFsColumn.MaxRowIndex \nMaxRowIndex \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#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#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#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.Range \nRange \nFsRangeAddress.FirstAddress \nFirstAddress \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#Range","title":"FsRangeAddress.Range","content":"FsRangeAddress.Range \nRange \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangeaddress.html#FirstAddress","title":"FsRangeAddress.FirstAddress","content":"FsRangeAddress.FirstAddress \nFirstAddress \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.Cells \nCells \nFsRow.Index \nIndex \nFsRow.MaxColIndex \nMaxColIndex \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#Cells","title":"FsRow.Cells","content":"FsRow.Cells \nCells \n\n The associated FsCells.\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#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.Index \nIndex \nFsTableField.Name \nName \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#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#Name","title":"FsTableField.Name","content":"FsTableField.Name \nName \n\n The name of this FsTableField.\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.MaxColumnIndex \nMaxColumnIndex \nFsWorksheet.Rows \nRows \nFsWorksheet.Columns \nColumns \nFsWorksheet.Tables \nTables \nFsWorksheet.Name \nName \nFsWorksheet.MaxRowIndex \nMaxRowIndex \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#MaxColumnIndex","title":"FsWorksheet.MaxColumnIndex","content":"FsWorksheet.MaxColumnIndex \nMaxColumnIndex \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#Columns","title":"FsWorksheet.Columns","content":"FsWorksheet.Columns \nColumns \n\n The FsColumns 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#Name","title":"FsWorksheet.Name","content":"FsWorksheet.Name \nName \n\n The name of the FsWorksheet.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#MaxRowIndex","title":"FsWorksheet.MaxRowIndex","content":"FsWorksheet.MaxRowIndex \nMaxRowIndex \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.row \nrow \nDSL.column \ncolumn \nDSL.cell \ncell"},{"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#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-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.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.NumRows \nNumRows \nFsSparseMatrix\u003C\u0027T\u003E.NumCols \nNumCols \nFsSparseMatrix\u003C\u0027T\u003E.Item \nItem \nFsSparseMatrix\u003C\u0027T\u003E.SparseRowOffsets \nSparseRowOffsets \nFsSparseMatrix\u003C\u0027T\u003E.SparseColumnValues \nSparseColumnValues \nFsSparseMatrix\u003C\u0027T\u003E.SparseValues \nSparseValues \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#NumRows","title":"FsSparseMatrix\u003C\u0027T\u003E.NumRows","content":"FsSparseMatrix\u003C\u0027T\u003E.NumRows \nNumRows \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#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#SparseValues","title":"FsSparseMatrix\u003C\u0027T\u003E.SparseValues","content":"FsSparseMatrix\u003C\u0027T\u003E.SparseValues \nSparseValues \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.fromRowsJsonString \nfromRowsJsonString \nFsSpreadsheet.toRowsJsonString \ntoRowsJsonString \nFsSpreadsheet.ToRowsJsonString \nToRowsJsonString \nFsSpreadsheet.fromColumnsJsonString \nfromColumnsJsonString \nFsSpreadsheet.toColumnsJsonString \ntoColumnsJsonString \nFsSpreadsheet.ToColumnsJsonString \nToColumnsJsonString"},{"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#fromRowsJsonString","title":"FsSpreadsheet.fromRowsJsonString","content":"FsSpreadsheet.fromRowsJsonString \nfromRowsJsonString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-fsspreadsheet.html#toRowsJsonString","title":"FsSpreadsheet.toRowsJsonString","content":"FsSpreadsheet.toRowsJsonString \ntoRowsJsonString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-fsspreadsheet.html#ToRowsJsonString","title":"FsSpreadsheet.ToRowsJsonString","content":"FsSpreadsheet.ToRowsJsonString \nToRowsJsonString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-fsspreadsheet.html#fromColumnsJsonString","title":"FsSpreadsheet.fromColumnsJsonString","content":"FsSpreadsheet.fromColumnsJsonString \nfromColumnsJsonString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-fsspreadsheet.html#toColumnsJsonString","title":"FsSpreadsheet.toColumnsJsonString","content":"FsSpreadsheet.toColumnsJsonString \ntoColumnsJsonString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-fsspreadsheet.html#ToColumnsJsonString","title":"FsSpreadsheet.ToColumnsJsonString","content":"FsSpreadsheet.ToColumnsJsonString \nToColumnsJsonString \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.fromColumnsJsonString \nfromColumnsJsonString \nJson.fromRowsJsonString \nfromRowsJsonString \nJson.toColumnsJsonString \ntoColumnsJsonString \nJson.toRowsJsonString \ntoRowsJsonString \nJson.tryFromColumnsJsonString \ntryFromColumnsJsonString \nJson.tryFromRowsJsonString \ntryFromRowsJsonString"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-json.html#fromColumnsJsonString","title":"Json.fromColumnsJsonString","content":"Json.fromColumnsJsonString \nfromColumnsJsonString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-json.html#fromRowsJsonString","title":"Json.fromRowsJsonString","content":"Json.fromRowsJsonString \nfromRowsJsonString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-json.html#toColumnsJsonString","title":"Json.toColumnsJsonString","content":"Json.toColumnsJsonString \ntoColumnsJsonString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-json.html#toRowsJsonString","title":"Json.toRowsJsonString","content":"Json.toRowsJsonString \ntoRowsJsonString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-json.html#tryFromColumnsJsonString","title":"Json.tryFromColumnsJsonString","content":"Json.tryFromColumnsJsonString \ntryFromColumnsJsonString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-json.html#tryFromRowsJsonString","title":"Json.tryFromRowsJsonString","content":"Json.tryFromRowsJsonString \ntryFromRowsJsonString \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.row \nrow \nCell.value \nvalue \nCell.encodeNoNumber \nencodeNoNumber \nCell.encodeRows \nencodeRows \nCell.decodeRows \ndecodeRows \nCell.encodeCols \nencodeCols \nCell.decodeCols \ndecodeCols"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-cell.html#column","title":"Cell.column","content":"Cell.column \ncolumn \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-cell.html#row","title":"Cell.row","content":"Cell.row \nrow \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-cell.html#value","title":"Cell.value","content":"Cell.value \nvalue \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-cell.html#encodeNoNumber","title":"Cell.encodeNoNumber","content":"Cell.encodeNoNumber \nencodeNoNumber \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-cell.html#encodeRows","title":"Cell.encodeRows","content":"Cell.encodeRows \nencodeRows \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-cell.html#decodeRows","title":"Cell.decodeRows","content":"Cell.decodeRows \ndecodeRows \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-cell.html#encodeCols","title":"Cell.encodeCols","content":"Cell.encodeCols \nencodeCols \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-cell.html#decodeCols","title":"Cell.decodeCols","content":"Cell.decodeCols \ndecodeCols \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-column.html","title":"Column","content":"Column \n \nColumn.cells \ncells \nColumn.number \nnumber \nColumn.encode \nencode \nColumn.encodeNoNumbers \nencodeNoNumbers \nColumn.decode \ndecode"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-column.html#cells","title":"Column.cells","content":"Column.cells \ncells \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-column.html#number","title":"Column.number","content":"Column.number \nnumber \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-column.html#encode","title":"Column.encode","content":"Column.encode \nencode \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-column.html#encodeNoNumbers","title":"Column.encodeNoNumbers","content":"Column.encodeNoNumbers \nencodeNoNumbers \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-column.html#decode","title":"Column.decode","content":"Column.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.encodeNoNumbers \nencodeNoNumbers \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#encodeNoNumbers","title":"Row.encodeNoNumbers","content":"Row.encodeNoNumbers \nencodeNoNumbers \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.encodeRows \nencodeRows \nWorkbook.decodeRows \ndecodeRows \nWorkbook.encodeColumns \nencodeColumns \nWorkbook.decodeColumns \ndecodeColumns"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-workbook.html#sheets","title":"Workbook.sheets","content":"Workbook.sheets \nsheets \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-workbook.html#encodeRows","title":"Workbook.encodeRows","content":"Workbook.encodeRows \nencodeRows \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-workbook.html#decodeRows","title":"Workbook.decodeRows","content":"Workbook.decodeRows \ndecodeRows \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-workbook.html#encodeColumns","title":"Workbook.encodeColumns","content":"Workbook.encodeColumns \nencodeColumns \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-workbook.html#decodeColumns","title":"Workbook.decodeColumns","content":"Workbook.decodeColumns \ndecodeColumns \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-worksheet.html","title":"Worksheet","content":"Worksheet \n \nWorksheet.name \nname \nWorksheet.rows \nrows \nWorksheet.columns \ncolumns \nWorksheet.tables \ntables \nWorksheet.encodeRows \nencodeRows \nWorksheet.decodeRows \ndecodeRows \nWorksheet.encodeColumns \nencodeColumns \nWorksheet.decodeColumns \ndecodeColumns"},{"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#columns","title":"Worksheet.columns","content":"Worksheet.columns \ncolumns \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-worksheet.html#tables","title":"Worksheet.tables","content":"Worksheet.tables \ntables \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-worksheet.html#encodeRows","title":"Worksheet.encodeRows","content":"Worksheet.encodeRows \nencodeRows \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-worksheet.html#decodeRows","title":"Worksheet.decodeRows","content":"Worksheet.decodeRows \ndecodeRows \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-worksheet.html#encodeColumns","title":"Worksheet.encodeColumns","content":"Worksheet.encodeColumns \nencodeColumns \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-worksheet.html#decodeColumns","title":"Worksheet.decodeColumns","content":"Worksheet.decodeColumns \ndecodeColumns \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.tryFromRowsJsonString \ntryFromRowsJsonString \nFsExtensions.fromRowsJsonString \nfromRowsJsonString \nFsExtensions.tryFromRowsJsonFile \ntryFromRowsJsonFile \nFsExtensions.fromRowsJsonFile \nfromRowsJsonFile \nFsExtensions.tryFromColumnsJsonString \ntryFromColumnsJsonString \nFsExtensions.fromColumnsJsonString \nfromColumnsJsonString \nFsExtensions.tryFromColumnsJsonFile \ntryFromColumnsJsonFile \nFsExtensions.fromColumnsJsonFile \nfromColumnsJsonFile \nFsExtensions.ToEmptySpreadsheet \nToEmptySpreadsheet \nFsExtensions.ToXlsxStream \nToXlsxStream \nFsExtensions.toXlsxStream \ntoXlsxStream \nFsExtensions.ToXlsxBytes \nToXlsxBytes \nFsExtensions.toXlsxBytes \ntoXlsxBytes \nFsExtensions.ToXlsxFile \nToXlsxFile \nFsExtensions.toXlsxFile \ntoXlsxFile \nFsExtensions.toRowsJsonString \ntoRowsJsonString \nFsExtensions.toRowsJsonFile \ntoRowsJsonFile \nFsExtensions.ToRowsJsonString \nToRowsJsonString \nFsExtensions.ToRowsJsonFile \nToRowsJsonFile \nFsExtensions.toColumnsJsonString \ntoColumnsJsonString \nFsExtensions.toColumnsJsonFile \ntoColumnsJsonFile \nFsExtensions.ToColumnsJsonString \nToColumnsJsonString \nFsExtensions.ToColumnsJsonFile \nToColumnsJsonFile"},{"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#tryFromRowsJsonString","title":"FsExtensions.tryFromRowsJsonString","content":"FsExtensions.tryFromRowsJsonString \ntryFromRowsJsonString \n\n Takes a json string and returns the FsWorkbook based on its content.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#fromRowsJsonString","title":"FsExtensions.fromRowsJsonString","content":"FsExtensions.fromRowsJsonString \nfromRowsJsonString \n\n Takes a json string and returns the FsWorkbook based on its content.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#tryFromRowsJsonFile","title":"FsExtensions.tryFromRowsJsonFile","content":"FsExtensions.tryFromRowsJsonFile \ntryFromRowsJsonFile \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#fromRowsJsonFile","title":"FsExtensions.fromRowsJsonFile","content":"FsExtensions.fromRowsJsonFile \nfromRowsJsonFile \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#tryFromColumnsJsonString","title":"FsExtensions.tryFromColumnsJsonString","content":"FsExtensions.tryFromColumnsJsonString \ntryFromColumnsJsonString \n\n Takes a json string and returns the FsWorkbook based on its content.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#fromColumnsJsonString","title":"FsExtensions.fromColumnsJsonString","content":"FsExtensions.fromColumnsJsonString \nfromColumnsJsonString \n\n Takes a json string and returns the FsWorkbook based on its content.\n "},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#tryFromColumnsJsonFile","title":"FsExtensions.tryFromColumnsJsonFile","content":"FsExtensions.tryFromColumnsJsonFile \ntryFromColumnsJsonFile \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#fromColumnsJsonFile","title":"FsExtensions.fromColumnsJsonFile","content":"FsExtensions.fromColumnsJsonFile \nfromColumnsJsonFile \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#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#toRowsJsonString","title":"FsExtensions.toRowsJsonString","content":"FsExtensions.toRowsJsonString \ntoRowsJsonString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#toRowsJsonFile","title":"FsExtensions.toRowsJsonFile","content":"FsExtensions.toRowsJsonFile \ntoRowsJsonFile \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#ToRowsJsonString","title":"FsExtensions.ToRowsJsonString","content":"FsExtensions.ToRowsJsonString \nToRowsJsonString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#ToRowsJsonFile","title":"FsExtensions.ToRowsJsonFile","content":"FsExtensions.ToRowsJsonFile \nToRowsJsonFile \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#toColumnsJsonString","title":"FsExtensions.toColumnsJsonString","content":"FsExtensions.toColumnsJsonString \ntoColumnsJsonString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#toColumnsJsonFile","title":"FsExtensions.toColumnsJsonFile","content":"FsExtensions.toColumnsJsonFile \ntoColumnsJsonFile \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#ToColumnsJsonString","title":"FsExtensions.ToColumnsJsonString","content":"FsExtensions.ToColumnsJsonString \nToColumnsJsonString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#ToColumnsJsonFile","title":"FsExtensions.ToColumnsJsonFile","content":"FsExtensions.ToColumnsJsonFile \nToColumnsJsonFile \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.Keys \nKeys \nRelationships.Values \nValues \nRelationships.IsEmpty \nIsEmpty \nRelationships.Count \nCount"},{"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#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#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.toRowsJsonFile \ntoRowsJsonFile \nWriter.toRowsJsonString \ntoRowsJsonString \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#toRowsJsonFile","title":"Writer.toRowsJsonFile","content":"Writer.toRowsJsonFile \ntoRowsJsonFile \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-writer.html#toRowsJsonString","title":"Writer.toRowsJsonString","content":"Writer.toRowsJsonString \ntoRowsJsonString \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.fromRowsJsonString \nfromRowsJsonString \nFsSpreadsheet.toRowsJsonString \ntoRowsJsonString \nFsSpreadsheet.ToRowsJsonString \nToRowsJsonString \nFsSpreadsheet.fromColumnsJsonString \nfromColumnsJsonString \nFsSpreadsheet.toColumnsJsonString \ntoColumnsJsonString \nFsSpreadsheet.ToColumnsJsonString \nToColumnsJsonString"},{"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#fromRowsJsonString","title":"FsSpreadsheet.fromRowsJsonString","content":"FsSpreadsheet.fromRowsJsonString \nfromRowsJsonString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-fsspreadsheet.html#toRowsJsonString","title":"FsSpreadsheet.toRowsJsonString","content":"FsSpreadsheet.toRowsJsonString \ntoRowsJsonString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-fsspreadsheet.html#ToRowsJsonString","title":"FsSpreadsheet.ToRowsJsonString","content":"FsSpreadsheet.ToRowsJsonString \nToRowsJsonString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-fsspreadsheet.html#fromColumnsJsonString","title":"FsSpreadsheet.fromColumnsJsonString","content":"FsSpreadsheet.fromColumnsJsonString \nfromColumnsJsonString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-fsspreadsheet.html#toColumnsJsonString","title":"FsSpreadsheet.toColumnsJsonString","content":"FsSpreadsheet.toColumnsJsonString \ntoColumnsJsonString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-fsspreadsheet.html#ToColumnsJsonString","title":"FsSpreadsheet.ToColumnsJsonString","content":"FsSpreadsheet.ToColumnsJsonString \nToColumnsJsonString \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.fromColumnsJsonString \nfromColumnsJsonString \nJson.fromRowsJsonString \nfromRowsJsonString \nJson.toColumnsJsonString \ntoColumnsJsonString \nJson.toRowsJsonString \ntoRowsJsonString \nJson.tryFromColumnsJsonString \ntryFromColumnsJsonString \nJson.tryFromRowsJsonString \ntryFromRowsJsonString"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-json.html#fromColumnsJsonString","title":"Json.fromColumnsJsonString","content":"Json.fromColumnsJsonString \nfromColumnsJsonString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-json.html#fromRowsJsonString","title":"Json.fromRowsJsonString","content":"Json.fromRowsJsonString \nfromRowsJsonString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-json.html#toColumnsJsonString","title":"Json.toColumnsJsonString","content":"Json.toColumnsJsonString \ntoColumnsJsonString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-json.html#toRowsJsonString","title":"Json.toRowsJsonString","content":"Json.toRowsJsonString \ntoRowsJsonString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-json.html#tryFromColumnsJsonString","title":"Json.tryFromColumnsJsonString","content":"Json.tryFromColumnsJsonString \ntryFromColumnsJsonString \n"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-json.html#tryFromRowsJsonString","title":"Json.tryFromRowsJsonString","content":"Json.tryFromRowsJsonString \ntryFromRowsJsonString \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 +[{"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","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-csvio.html","title":"FsSpreadsheet.CsvIO","content":"FsExtensions \nWriter","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-interactive.html","title":"FsSpreadsheet.Interactive","content":"Formatters \nFormatterKernelExtension \nFsSparseMatrix\u003C\u0027T\u003E","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js.html","title":"FsSpreadsheet.Js","content":"FsSpreadsheet \nJsCell \nJsTable \nJsWorkbook \nJsWorksheet \nJson \nXlsx","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json.html","title":"FsSpreadsheet.Json","content":"Cell \nColumn \nRow \nTable \nValue \nWorkbook \nWorksheet","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py.html","title":"FsSpreadsheet.Py","content":"FsSpreadsheet \nPyCell \nPyCellType \nPyTable \nPyWorkbook \nPyWorksheet \nJson \nXlsx","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/global.html","title":"global","content":"DefaultTestObject \nTestingUtils","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-cellreference.html","title":"CellReference","content":"CellReference \n Module containing functions to work with \u0022A1\u0022 style excel cell references. \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","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-cellreference.html#indexPattern","title":"CellReference.indexPattern","content":"CellReference.indexPattern \nindexPattern \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-cellreference.html#indexRegex","title":"CellReference.indexRegex","content":"CellReference.indexRegex \nindexRegex \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-cellreference.html#colAdressToIndex","title":"CellReference.colAdressToIndex","content":"CellReference.colAdressToIndex \ncolAdressToIndex \n Transforms excel column string indices (e.g. A, B, Z, AA, CD) to index number (starting with A = 1).","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-cellreference.html#indexToColAdress","title":"CellReference.indexToColAdress","content":"CellReference.indexToColAdress \nindexToColAdress \n Transforms number index to excel column string indices (e.g. A, B, Z, AA, CD) (starting with A = 1).","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-cellreference.html#ofIndices","title":"CellReference.ofIndices","content":"CellReference.ofIndices \nofIndices \n Maps 1 based column and row indices to \u0022A1\u0022 style reference.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-cellreference.html#toIndices","title":"CellReference.toIndices","content":"CellReference.toIndices \ntoIndices \n Maps a \u0022A1\u0022 style excel cell reference to a column * row index tuple (1 Based indices).","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-cellreference.html#toColIndex","title":"CellReference.toColIndex","content":"CellReference.toColIndex \ntoColIndex \n Maps a \u0022A1\u0022 style excel cell reference to a column (1 Based indices).","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-cellreference.html#toRowIndex","title":"CellReference.toRowIndex","content":"CellReference.toRowIndex \ntoRowIndex \n Maps a \u0022A1\u0022 style excel cell reference to a row (1 Based indices).","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-cellreference.html#setColIndex","title":"CellReference.setColIndex","content":"CellReference.setColIndex \nsetColIndex \n Sets the column index (1 Based indices) of a \u0022A1\u0022 style excel cell reference.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-cellreference.html#setRowIndex","title":"CellReference.setRowIndex","content":"CellReference.setRowIndex \nsetRowIndex \n Sets the row index (1 Based indices) of a \u0022A1\u0022 style excel cell reference.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-cellreference.html#moveHorizontal","title":"CellReference.moveHorizontal","content":"CellReference.moveHorizontal \nmoveHorizontal \n Changes the column portion of a \u0022A1\u0022-style reference by the given amount (positive amount = increase and vice versa).","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-cellreference.html#moveVertical","title":"CellReference.moveVertical","content":"CellReference.moveVertical \nmoveVertical \n Changes the row portion of a \u0022A1\u0022-style reference by the given amount (positive amount = increase and vice versa).","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dictionary.html","title":"Dictionary","content":"Dictionary \n \nDictionary.tryGet \ntryGet","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dictionary.html#tryGet","title":"Dictionary.tryGet","content":"Dictionary.tryGet \ntryGet \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-enhancements.html","title":"Enhancements","content":"Enhancements \n \nEnhancements.toRangeColumns \ntoRangeColumns","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-enhancements.html#toRangeColumns","title":"Enhancements.toRangeColumns","content":"Enhancements.toRangeColumns \ntoRangeColumns \n Takes an FsRangeAddress and returns, for every column the range address spans, an FsRangeColumn.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellaux.html","title":"FsCellAux","content":"FsCellAux \n Creates an FsCell of \u0060DataType\u0060 dataType, with value of type \u0060string\u0060, and \u0060FsAddress\u0060 address. \nFsCellAux.boolConverter \nboolConverter","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellaux.html#boolConverter","title":"FsCellAux.boolConverter","content":"FsCellAux.boolConverter \nboolConverter \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-range.html","title":"Range","content":"Range \n The areas marks the area in which the table lies. \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","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-range.html#ofBoundaries","title":"Range.ofBoundaries","content":"Range.ofBoundaries \nofBoundaries \n Given A1-based top left start and bottom right end indices, returns a \u0022A1:A1\u0022-style area-","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-range.html#toBoundaries","title":"Range.toBoundaries","content":"Range.toBoundaries \ntoBoundaries \n Given a \u0022A1:A1\u0022-style area, returns A1-based cell start and end cellReferences.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-range.html#rightBoundary","title":"Range.rightBoundary","content":"Range.rightBoundary \nrightBoundary \n Gets the right boundary of the area.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-range.html#leftBoundary","title":"Range.leftBoundary","content":"Range.leftBoundary \nleftBoundary \n Gets the left boundary of the area.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-range.html#upperBoundary","title":"Range.upperBoundary","content":"Range.upperBoundary \nupperBoundary \n Gets the Upper boundary of the area.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-range.html#lowerBoundary","title":"Range.lowerBoundary","content":"Range.lowerBoundary \nlowerBoundary \n Gets the lower boundary of the area.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-range.html#moveHorizontal","title":"Range.moveHorizontal","content":"Range.moveHorizontal \nmoveHorizontal \n Moves both start and end of the area by the given amount (positive amount moves area to right and vice versa).","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-range.html#moveVertical","title":"Range.moveVertical","content":"Range.moveVertical \nmoveVertical \n Moves both start and end of the area by the given amount (positive amount moves area to right and vice versa).","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-range.html#extendRight","title":"Range.extendRight","content":"Range.extendRight \nextendRight \n Extends the right boundary of the area by the given amount (positive amount increases area to right and vice versa).","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-range.html#extendLeft","title":"Range.extendLeft","content":"Range.extendLeft \nextendLeft \n Extends the left boundary of the area by the given amount (positive amount decreases the area to left and vice versa).","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-range.html#referenceExceedsAreaRight","title":"Range.referenceExceedsAreaRight","content":"Range.referenceExceedsAreaRight \nreferenceExceedsAreaRight \n Returns true if the column index of the reference exceeds the right boundary of the area.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-range.html#referenceExceedsAreaLeft","title":"Range.referenceExceedsAreaLeft","content":"Range.referenceExceedsAreaLeft \nreferenceExceedsAreaLeft \n Returns true if the column index of the reference exceeds the left boundary of the area.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-range.html#referenceExceedsAreaAbove","title":"Range.referenceExceedsAreaAbove","content":"Range.referenceExceedsAreaAbove \nreferenceExceedsAreaAbove \n Returns true if the column index of the reference exceeds the upper boundary of the area.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-range.html#referenceExceedsAreaBelow","title":"Range.referenceExceedsAreaBelow","content":"Range.referenceExceedsAreaBelow \nreferenceExceedsAreaBelow \n Returns true if the column index of the reference exceeds the lower boundary of the area.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-range.html#referenceExceedsArea","title":"Range.referenceExceedsArea","content":"Range.referenceExceedsArea \nreferenceExceedsArea \n Returns true if the reference does not lie in the boundary of the area.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-range.html#isCorrect","title":"Range.isCorrect","content":"Range.isCorrect \nisCorrect \n Returns true if the A1:A1-style area is of correct format.","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder.html#Populate","title":"SheetBuilder.Populate","content":"SheetBuilder.Populate \nPopulate \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder.html#populate","title":"SheetBuilder.populate","content":"SheetBuilder.populate \npopulate \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder.html#Populate","title":"SheetBuilder.Populate","content":"SheetBuilder.Populate \nPopulate \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder.html#populate","title":"SheetBuilder.populate","content":"SheetBuilder.populate \npopulate \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder.html#createFrom","title":"SheetBuilder.createFrom","content":"SheetBuilder.createFrom \ncreateFrom \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder.html#createFrom","title":"SheetBuilder.createFrom","content":"SheetBuilder.createFrom \ncreateFrom \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder.html#PopulateTable","title":"SheetBuilder.PopulateTable","content":"SheetBuilder.PopulateTable \nPopulateTable \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder.html#createTableFrom","title":"SheetBuilder.createTableFrom","content":"SheetBuilder.createTableFrom \ncreateTableFrom \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder.html#Populate","title":"SheetBuilder.Populate","content":"SheetBuilder.Populate \nPopulate \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder.html#populate","title":"SheetBuilder.populate","content":"SheetBuilder.populate \npopulate \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder.html#createFrom","title":"SheetBuilder.createFrom","content":"SheetBuilder.createFrom \ncreateFrom \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder.html#createFrom","title":"SheetBuilder.createFrom","content":"SheetBuilder.createFrom \ncreateFrom \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder.html#createFrom","title":"SheetBuilder.createFrom","content":"SheetBuilder.createFrom \ncreateFrom \n","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html#adjustToContents","title":"FieldMap\u003C\u0027T\u003E.adjustToContents","content":"FieldMap\u003C\u0027T\u003E.adjustToContents \nadjustToContents \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html#header","title":"FieldMap\u003C\u0027T\u003E.header","content":"FieldMap\u003C\u0027T\u003E.header \nheader \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html#header","title":"FieldMap\u003C\u0027T\u003E.header","content":"FieldMap\u003C\u0027T\u003E.header \nheader \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html#create","title":"FieldMap\u003C\u0027T\u003E.create","content":"FieldMap\u003C\u0027T\u003E.create \ncreate \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html#empty","title":"FieldMap\u003C\u0027T\u003E.empty","content":"FieldMap\u003C\u0027T\u003E.empty \nempty \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html#field","title":"FieldMap\u003C\u0027T\u003E.field","content":"FieldMap\u003C\u0027T\u003E.field \nfield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html#field","title":"FieldMap\u003C\u0027T\u003E.field","content":"FieldMap\u003C\u0027T\u003E.field \nfield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html#field","title":"FieldMap\u003C\u0027T\u003E.field","content":"FieldMap\u003C\u0027T\u003E.field \nfield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html#field","title":"FieldMap\u003C\u0027T\u003E.field","content":"FieldMap\u003C\u0027T\u003E.field \nfield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html#field","title":"FieldMap\u003C\u0027T\u003E.field","content":"FieldMap\u003C\u0027T\u003E.field \nfield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html#field","title":"FieldMap\u003C\u0027T\u003E.field","content":"FieldMap\u003C\u0027T\u003E.field \nfield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html#field","title":"FieldMap\u003C\u0027T\u003E.field","content":"FieldMap\u003C\u0027T\u003E.field \nfield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html#field","title":"FieldMap\u003C\u0027T\u003E.field","content":"FieldMap\u003C\u0027T\u003E.field \nfield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html#field","title":"FieldMap\u003C\u0027T\u003E.field","content":"FieldMap\u003C\u0027T\u003E.field \nfield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html#field","title":"FieldMap\u003C\u0027T\u003E.field","content":"FieldMap\u003C\u0027T\u003E.field \nfield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html#CellTransformers","title":"FieldMap\u003C\u0027T\u003E.CellTransformers","content":"FieldMap\u003C\u0027T\u003E.CellTransformers \nCellTransformers \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html#HeaderTransformers","title":"FieldMap\u003C\u0027T\u003E.HeaderTransformers","content":"FieldMap\u003C\u0027T\u003E.HeaderTransformers \nHeaderTransformers \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html#ColumnWidth","title":"FieldMap\u003C\u0027T\u003E.ColumnWidth","content":"FieldMap\u003C\u0027T\u003E.ColumnWidth \nColumnWidth \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html#RowHeight","title":"FieldMap\u003C\u0027T\u003E.RowHeight","content":"FieldMap\u003C\u0027T\u003E.RowHeight \nRowHeight \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html#AdjustToContents","title":"FieldMap\u003C\u0027T\u003E.AdjustToContents","content":"FieldMap\u003C\u0027T\u003E.AdjustToContents \nAdjustToContents \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html#Hash","title":"FieldMap\u003C\u0027T\u003E.Hash","content":"FieldMap\u003C\u0027T\u003E.Hash \nHash \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-datatype.html","title":"DataType","content":"DataType \n Possible DataTypes used in a FsCell. \nDataType.InferCellValue \nInferCellValue \nDataType.String \nString \nDataType.Boolean \nBoolean \nDataType.Number \nNumber \nDataType.Date \nDate \nDataType.Empty \nEmpty","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-datatype.html#InferCellValue","title":"DataType.InferCellValue","content":"DataType.InferCellValue \nInferCellValue \n Returns the proper CellValues case for the given value.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-datatype.html#String","title":"DataType.String","content":"DataType.String \nString \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-datatype.html#Boolean","title":"DataType.Boolean","content":"DataType.Boolean \nBoolean \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-datatype.html#Number","title":"DataType.Number","content":"DataType.Number \nNumber \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-datatype.html#Date","title":"DataType.Date","content":"DataType.Date \nDate \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-datatype.html#Empty","title":"DataType.Empty","content":"DataType.Empty \nEmpty \n","headings":[],"type":"apiDocs"},{"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.Address \nAddress \nFsAddress.FixedRow \nFixedRow \nFsAddress.FixedColumn \nFixedColumn \nFsAddress.ColumnNumber \nColumnNumber \nFsAddress.compare \ncompare \nFsAddress.copy \ncopy \nFsAddress.toIndices \ntoIndices \nFsAddress.updateIndices \nupdateIndices","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsaddress.html#Compare","title":"FsAddress.Compare","content":"FsAddress.Compare \nCompare \nCompares the FsAddress with a given other one.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsaddress.html#Copy","title":"FsAddress.Copy","content":"FsAddress.Copy \nCopy \n Creates a deep copy of the FsAddress.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsaddress.html#ToIndices","title":"FsAddress.ToIndices","content":"FsAddress.ToIndices \nToIndices \nReturns the row- and the columnIndex of the FsAddress.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsaddress.html#UpdateIndices","title":"FsAddress.UpdateIndices","content":"FsAddress.UpdateIndices \nUpdateIndices \n Updates the row- and columnIndex respective to the given indices.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsaddress.html#RowNumber","title":"FsAddress.RowNumber","content":"FsAddress.RowNumber \nRowNumber \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsaddress.html#Address","title":"FsAddress.Address","content":"FsAddress.Address \nAddress \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsaddress.html#FixedRow","title":"FsAddress.FixedRow","content":"FsAddress.FixedRow \nFixedRow \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsaddress.html#FixedColumn","title":"FsAddress.FixedColumn","content":"FsAddress.FixedColumn \nFixedColumn \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsaddress.html#ColumnNumber","title":"FsAddress.ColumnNumber","content":"FsAddress.ColumnNumber \nColumnNumber \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsaddress.html#compare","title":"FsAddress.compare","content":"FsAddress.compare \ncompare \nChecks if 2 FsAddresses are equal.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsaddress.html#copy","title":"FsAddress.copy","content":"FsAddress.copy \ncopy \n Returns a deep copy of the given FsAddress.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsaddress.html#toIndices","title":"FsAddress.toIndices","content":"FsAddress.toIndices \ntoIndices \nReturns the row- and the columnIndex of a given FsAddress.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsaddress.html#updateIndices","title":"FsAddress.updateIndices","content":"FsAddress.updateIndices \nupdateIndices \n Updates the row- and columnIndex of a given FsAddress respective to the given indices.","headings":[],"type":"apiDocs"},{"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.Address \nAddress \nFsCell.DataType \nDataType \nFsCell.Value \nValue \nFsCell.ColumnNumber \nColumnNumber \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","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#Copy","title":"FsCell.Copy","content":"FsCell.Copy \nCopy \n Creates a deep copy of this FsCell.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#CopyFrom","title":"FsCell.CopyFrom","content":"FsCell.CopyFrom \nCopyFrom \n Copies and replaces DataType and Value from a given FsCell into this one.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#CopyTo","title":"FsCell.CopyTo","content":"FsCell.CopyTo \nCopyTo \n Copies DataType and Value from this FsCell to a given one and replaces theirs.","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#StructurallyEquals","title":"FsCell.StructurallyEquals","content":"FsCell.StructurallyEquals \nStructurallyEquals \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#ValueAsBool","title":"FsCell.ValueAsBool","content":"FsCell.ValueAsBool \nValueAsBool \n Gets the value as bool","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#ValueAsChar","title":"FsCell.ValueAsChar","content":"FsCell.ValueAsChar \nValueAsChar \n Gets the value as char","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#ValueAsDateTime","title":"FsCell.ValueAsDateTime","content":"FsCell.ValueAsDateTime \nValueAsDateTime \n Gets the value as DateTime","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#ValueAsDecimal","title":"FsCell.ValueAsDecimal","content":"FsCell.ValueAsDecimal \nValueAsDecimal \n Gets the value as decimal","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#ValueAsDouble","title":"FsCell.ValueAsDouble","content":"FsCell.ValueAsDouble \nValueAsDouble \n Gets the value as double","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#ValueAsFloat","title":"FsCell.ValueAsFloat","content":"FsCell.ValueAsFloat \nValueAsFloat \n Gets the value as float","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#ValueAsGuid","title":"FsCell.ValueAsGuid","content":"FsCell.ValueAsGuid \nValueAsGuid \n Gets the value as Guid","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#ValueAsInt","title":"FsCell.ValueAsInt","content":"FsCell.ValueAsInt \nValueAsInt \n Gets the value as int","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#ValueAsLong","title":"FsCell.ValueAsLong","content":"FsCell.ValueAsLong \nValueAsLong \n Gets the value as long","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#ValueAsString","title":"FsCell.ValueAsString","content":"FsCell.ValueAsString \nValueAsString \n Gets the value as string","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#ValueAsUInt","title":"FsCell.ValueAsUInt","content":"FsCell.ValueAsUInt \nValueAsUInt \n Gets the value as uint","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#ValueAsULong","title":"FsCell.ValueAsULong","content":"FsCell.ValueAsULong \nValueAsULong \n Gets the value as ulong","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#RowNumber","title":"FsCell.RowNumber","content":"FsCell.RowNumber \nRowNumber \n Gets or sets the rowIndex of the FsCell.","headings":[],"type":"apiDocs"},{"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 ","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"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 ","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#ColumnNumber","title":"FsCell.ColumnNumber","content":"FsCell.ColumnNumber \nColumnNumber \n Gets or sets the columnIndex of the FsCell.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#copy","title":"FsCell.copy","content":"FsCell.copy \ncopy \n Returns a deep copy of a given FsCell.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#copyFromTo","title":"FsCell.copyFromTo","content":"FsCell.copyFromTo \ncopyFromTo \n Copies and replaces DataType and Value from a source FsCell into a target FsCell. Returns the target cell.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#create","title":"FsCell.create","content":"FsCell.create \ncreate \n Create an FsCell from given rowNumber, colNumber, and value. Infers the DataType.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#createEmpty","title":"FsCell.createEmpty","content":"FsCell.createEmpty \ncreateEmpty \n Creates an empty FsCell.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#createEmptyWithAdress","title":"FsCell.createEmptyWithAdress","content":"FsCell.createEmptyWithAdress \ncreateEmptyWithAdress \n Creates an empty FsCell with a given FsAddress.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#createWithAdress","title":"FsCell.createWithAdress","content":"FsCell.createWithAdress \ncreateWithAdress \n Creates an FsCell with the given FsAdress and value. Inferes the DataType.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#createWithDataType","title":"FsCell.createWithDataType","content":"FsCell.createWithDataType \ncreateWithDataType \n Creates an FsCell with the given DataType, rowNumber, colNumber, and value.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#empty","title":"FsCell.empty","content":"FsCell.empty \nempty \n Creates an empty FsCell, set at row 0, column 0 (1-based).","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#getValueAsBool","title":"FsCell.getValueAsBool","content":"FsCell.getValueAsBool \ngetValueAsBool \n Gets the value as bool","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#getValueAsChar","title":"FsCell.getValueAsChar","content":"FsCell.getValueAsChar \ngetValueAsChar \n Gets the value as char","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#getValueAsDateTime","title":"FsCell.getValueAsDateTime","content":"FsCell.getValueAsDateTime \ngetValueAsDateTime \n Gets the value as DateTime","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#getValueAsDecimal","title":"FsCell.getValueAsDecimal","content":"FsCell.getValueAsDecimal \ngetValueAsDecimal \n Gets the value as decimal","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#getValueAsDouble","title":"FsCell.getValueAsDouble","content":"FsCell.getValueAsDouble \ngetValueAsDouble \n Gets the value as double","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#getValueAsFloat","title":"FsCell.getValueAsFloat","content":"FsCell.getValueAsFloat \ngetValueAsFloat \n Gets the value as float","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#getValueAsGuid","title":"FsCell.getValueAsGuid","content":"FsCell.getValueAsGuid \ngetValueAsGuid \n Gets the value as Guid","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#getValueAsInt","title":"FsCell.getValueAsInt","content":"FsCell.getValueAsInt \ngetValueAsInt \n Gets the value as int","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#getValueAsLong","title":"FsCell.getValueAsLong","content":"FsCell.getValueAsLong \ngetValueAsLong \n Gets the value as long","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#getValueAsString","title":"FsCell.getValueAsString","content":"FsCell.getValueAsString \ngetValueAsString \n Gets the value as string","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#getValueAsUInt","title":"FsCell.getValueAsUInt","content":"FsCell.getValueAsUInt \ngetValueAsUInt \n Gets the value as uint","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscell.html#getValueAsULong","title":"FsCell.getValueAsULong","content":"FsCell.getValueAsULong \ngetValueAsULong \n Gets the value as ulong","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html","title":"FsCellsCollection","content":"FsCellsCollection \n\u003Cpre\u003E\u003C/pre\u003E \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","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"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.","headings":[],"type":"apiDocs"},{"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.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#Add","title":"FsCellsCollection.Add","content":"FsCellsCollection.Add \nAdd \n Adds an FsCell of given rowIndex and columnIndex to the FsCellsCollection.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#Clear","title":"FsCellsCollection.Clear","content":"FsCellsCollection.Clear \nClear \n Empties the whole FsCellsCollection.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#ContainsCellAt","title":"FsCellsCollection.ContainsCellAt","content":"FsCellsCollection.ContainsCellAt \nContainsCellAt \n Checks if an FsCell exists at given row- and columnIndex.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#Copy","title":"FsCellsCollection.Copy","content":"FsCellsCollection.Copy \nCopy \n Creates a deep copy of the FsCellsCollection.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#GetCells","title":"FsCellsCollection.GetCells","content":"FsCellsCollection.GetCells \nGetCells \n Returns the FsCells from given startAddress to lastAddress.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#GetCells","title":"FsCellsCollection.GetCells","content":"FsCellsCollection.GetCells \nGetCells \n Returns the FsCells from given rowStart to rowEnd and columnStart to columnEnd.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#GetCells","title":"FsCellsCollection.GetCells","content":"FsCellsCollection.GetCells \nGetCells \n Returns the FsCells from given startAddress to lastAddress and fulfilling the predicate.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#GetCells","title":"FsCellsCollection.GetCells","content":"FsCellsCollection.GetCells \nGetCells \n Returns the FsCells from given rowStart to rowEnd and columnStart to columnEnd and fulfilling the predicate.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#GetCells","title":"FsCellsCollection.GetCells","content":"FsCellsCollection.GetCells \nGetCells \n Returns all FsCells of the FsCellsCollection.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#GetCellsInColumn","title":"FsCellsCollection.GetCellsInColumn","content":"FsCellsCollection.GetCellsInColumn \nGetCellsInColumn \n Returns all FsCells in the given columnIndex.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#GetCellsInRow","title":"FsCellsCollection.GetCellsInRow","content":"FsCellsCollection.GetCellsInRow \nGetCellsInRow \n Returns all FsCells in the given rowIndex.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#GetFirstAddress","title":"FsCellsCollection.GetFirstAddress","content":"FsCellsCollection.GetFirstAddress \nGetFirstAddress \n Returns the upper left corner of the FsCellsCollection.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#GetLastAddress","title":"FsCellsCollection.GetLastAddress","content":"FsCellsCollection.GetLastAddress \nGetLastAddress \n Returns the lower right corner of the FsCellsCollection.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#RemoveCellAt","title":"FsCellsCollection.RemoveCellAt","content":"FsCellsCollection.RemoveCellAt \nRemoveCellAt \n Removes an FsCell of given rowIndex and columnIndex from the FsCellsCollection.","headings":[],"type":"apiDocs"},{"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 ","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#TryGetCell","title":"FsCellsCollection.TryGetCell","content":"FsCellsCollection.TryGetCell \nTryGetCell \n Returns the FsCell at given rowIndex and columnIndex if it exists. Otherwise returns None.","headings":[],"type":"apiDocs"},{"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.","headings":[],"type":"apiDocs"},{"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.","headings":[],"type":"apiDocs"},{"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.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#Count","title":"FsCellsCollection.Count","content":"FsCellsCollection.Count \nCount \n","headings":[],"type":"apiDocs"},{"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.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#addCellWithIndeces","title":"FsCellsCollection.addCellWithIndeces","content":"FsCellsCollection.addCellWithIndeces \naddCellWithIndeces \n Adds an FsCell of given rowIndex and columnIndex to an FsCellsCollection.","headings":[],"type":"apiDocs"},{"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.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#containsCellAt","title":"FsCellsCollection.containsCellAt","content":"FsCellsCollection.containsCellAt \ncontainsCellAt \n Checks if an FsCell exists at given row- and columnIndex of a given FsCellsCollection.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#copy","title":"FsCellsCollection.copy","content":"FsCellsCollection.copy \ncopy \n Returns a deep copy of a given FsCellsCollection.","headings":[],"type":"apiDocs"},{"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.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#filterCellsFromTo","title":"FsCellsCollection.filterCellsFromTo","content":"FsCellsCollection.filterCellsFromTo \nfilterCellsFromTo \n Returns the FsCells from an FsCellsCollection with given rowStart to rowEnd and columnStart to columnEnd and fulfilling the predicate.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#filterCellsFromToAddress","title":"FsCellsCollection.filterCellsFromToAddress","content":"FsCellsCollection.filterCellsFromToAddress \nfilterCellsFromToAddress \n Returns the FsCells from an FsCellsCollection with given startAddress to lastAddress and fulfilling the predicate.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#getCells","title":"FsCellsCollection.getCells","content":"FsCellsCollection.getCells \ngetCells \n Returns all FsCells of the FsCellsCollection.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#getCellsFromTo","title":"FsCellsCollection.getCellsFromTo","content":"FsCellsCollection.getCellsFromTo \ngetCellsFromTo \n Returns the FsCells from an FsCellsCollection with given rowStart to rowEnd and columnStart to columnEnd.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#getCellsFromToAddress","title":"FsCellsCollection.getCellsFromToAddress","content":"FsCellsCollection.getCellsFromToAddress \ngetCellsFromToAddress \n Returns the FsCells from an FsCellsCollection with given startAddress to lastAddress.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#getCellsInColumn","title":"FsCellsCollection.getCellsInColumn","content":"FsCellsCollection.getCellsInColumn \ngetCellsInColumn \n Returns all FsCells in an FsCellsCollection with the given columnIndex.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#getCellsInRow","title":"FsCellsCollection.getCellsInRow","content":"FsCellsCollection.getCellsInRow \ngetCellsInRow \n Returns all FsCells in an FsCellsCollection with the given rowIndex.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#getFirstAddress","title":"FsCellsCollection.getFirstAddress","content":"FsCellsCollection.getFirstAddress \ngetFirstAddress \n Returns the upper left corner of a given FsCellsCollection.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#getLastAddress","title":"FsCellsCollection.getLastAddress","content":"FsCellsCollection.getLastAddress \ngetLastAddress \n Returns the lower right corner of a given FsCellsCollection.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#removeCellAt","title":"FsCellsCollection.removeCellAt","content":"FsCellsCollection.removeCellAt \nremoveCellAt \n Removes an FsCell of given rowIndex and columnIndex from an FsCellsCollection.","headings":[],"type":"apiDocs"},{"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 ","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscellscollection.html#tryGetCell","title":"FsCellsCollection.tryGetCell","content":"FsCellsCollection.tryGetCell \ntryGetCell \n Returns the FsCell from an FsCellsCollection at given rowIndex and columnIndex if it exists. Otherwise returns None.","headings":[],"type":"apiDocs"},{"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.","headings":[],"type":"apiDocs"},{"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.MinRowIndex \nMinRowIndex \nFsColumn.Index \nIndex \nFsColumn.MaxRowIndex \nMaxRowIndex \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","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscolumn.html#Copy","title":"FsColumn.Copy","content":"FsColumn.Copy \nCopy \n Creates a deep copy of this FsColumn.","headings":[],"type":"apiDocs"},{"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 ","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscolumn.html#Item","title":"FsColumn.Item","content":"FsColumn.Item \nItem \n Returns the FsCell at rowIndex.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscolumn.html#ToDenseColumn","title":"FsColumn.ToDenseColumn","content":"FsColumn.ToDenseColumn \nToDenseColumn \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.","headings":[],"type":"apiDocs"},{"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 ","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscolumn.html#MinRowIndex","title":"FsColumn.MinRowIndex","content":"FsColumn.MinRowIndex \nMinRowIndex \n The number of the lowest row index of the FsColumn where an FsCell exists.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscolumn.html#Index","title":"FsColumn.Index","content":"FsColumn.Index \nIndex \n The index of the FsColumn.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscolumn.html#MaxRowIndex","title":"FsColumn.MaxRowIndex","content":"FsColumn.MaxRowIndex \nMaxRowIndex \n The number of the highest row index of the FsColumn where an FsCell exists.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscolumn.html#Cells","title":"FsColumn.Cells","content":"FsColumn.Cells \nCells \n The associated FsCells.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscolumn.html#copy","title":"FsColumn.copy","content":"FsColumn.copy \ncopy \n Returns a deep copy of a given FsColumn.","headings":[],"type":"apiDocs"},{"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.","headings":[],"type":"apiDocs"},{"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 ","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscolumn.html#empty","title":"FsColumn.empty","content":"FsColumn.empty \nempty \n Creates an empty FsColumn, ranging from row 0, column 0 to row 0, column (1-based).","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscolumn.html#getIndex","title":"FsColumn.getIndex","content":"FsColumn.getIndex \ngetIndex \n Returns the index of the given FsColumn.","headings":[],"type":"apiDocs"},{"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 ","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fscolumn.html#item","title":"FsColumn.item","content":"FsColumn.item \nitem \n Returns the FsCell at the given rowIndex from an FsColumn.","headings":[],"type":"apiDocs"},{"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.","headings":[],"type":"apiDocs"},{"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 ","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrange.html#FirstRow","title":"FsRange.FirstRow","content":"FsRange.FirstRow \nFirstRow \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrange.html#Row","title":"FsRange.Row","content":"FsRange.Row \nRow \n","headings":[],"type":"apiDocs"},{"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.Range \nRange \nFsRangeAddress.LastAddress \nLastAddress \nFsRangeAddress.FirstAddress \nFirstAddress \nFsRangeAddress.copy \ncopy","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangeaddress.html#Copy","title":"FsRangeAddress.Copy","content":"FsRangeAddress.Copy \nCopy \n Creates a deep copy of this FsRangeAddress.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangeaddress.html#Extend","title":"FsRangeAddress.Extend","content":"FsRangeAddress.Extend \nExtend \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangeaddress.html#Normalize","title":"FsRangeAddress.Normalize","content":"FsRangeAddress.Normalize \nNormalize \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangeaddress.html#Union","title":"FsRangeAddress.Union","content":"FsRangeAddress.Union \nUnion \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangeaddress.html#Range","title":"FsRangeAddress.Range","content":"FsRangeAddress.Range \nRange \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangeaddress.html#LastAddress","title":"FsRangeAddress.LastAddress","content":"FsRangeAddress.LastAddress \nLastAddress \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangeaddress.html#FirstAddress","title":"FsRangeAddress.FirstAddress","content":"FsRangeAddress.FirstAddress \nFirstAddress \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangeaddress.html#copy","title":"FsRangeAddress.copy","content":"FsRangeAddress.copy \ncopy \n Returns a deep copy of a given FsRangeAddress.","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangebase.html#Cell","title":"FsRangeBase.Cell","content":"FsRangeBase.Cell \nCell \n","headings":[],"type":"apiDocs"},{"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 ","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangebase.html#ColumnCount","title":"FsRangeBase.ColumnCount","content":"FsRangeBase.ColumnCount \nColumnCount \n The number of columns in the FsRangeBase.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangebase.html#Extend","title":"FsRangeBase.Extend","content":"FsRangeBase.Extend \nExtend \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangebase.html#RowCount","title":"FsRangeBase.RowCount","content":"FsRangeBase.RowCount \nRowCount \n The number of rows in the FsRangeBase.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangebase.html#RangeAddress","title":"FsRangeBase.RangeAddress","content":"FsRangeBase.RangeAddress \nRangeAddress \n","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangecolumn.html#Cell","title":"FsRangeColumn.Cell","content":"FsRangeColumn.Cell \nCell \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangecolumn.html#Cells","title":"FsRangeColumn.Cells","content":"FsRangeColumn.Cells \nCells \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangecolumn.html#Copy","title":"FsRangeColumn.Copy","content":"FsRangeColumn.Copy \nCopy \n Creates a deep copy of this FsRangeColumn.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangecolumn.html#FirstCell","title":"FsRangeColumn.FirstCell","content":"FsRangeColumn.FirstCell \nFirstCell \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangecolumn.html#Index","title":"FsRangeColumn.Index","content":"FsRangeColumn.Index \nIndex \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangecolumn.html#copy","title":"FsRangeColumn.copy","content":"FsRangeColumn.copy \ncopy \n Returns a deep copy of a given FsRangeColumn.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangecolumn.html#fromRangeAddress","title":"FsRangeColumn.fromRangeAddress","content":"FsRangeColumn.fromRangeAddress \nfromRangeAddress \n","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangerow.html#Cell","title":"FsRangeRow.Cell","content":"FsRangeRow.Cell \nCell \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangerow.html#Cells","title":"FsRangeRow.Cells","content":"FsRangeRow.Cells \nCells \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrangerow.html#Index","title":"FsRangeRow.Index","content":"FsRangeRow.Index \nIndex \n","headings":[],"type":"apiDocs"},{"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.MinColIndex \nMinColIndex \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","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrow.html#Copy","title":"FsRow.Copy","content":"FsRow.Copy \nCopy \n Creates a deep copy of this FsRow.","headings":[],"type":"apiDocs"},{"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 ","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrow.html#InsertValueAt","title":"FsRow.InsertValueAt","content":"FsRow.InsertValueAt \nInsertValueAt \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.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrow.html#Item","title":"FsRow.Item","content":"FsRow.Item \nItem \n Returns the FsCell at columnIndex if it exists. Else creates an empty FsCell at that position.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrow.html#ToDenseRow","title":"FsRow.ToDenseRow","content":"FsRow.ToDenseRow \nToDenseRow \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.","headings":[],"type":"apiDocs"},{"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 ","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrow.html#MaxColIndex","title":"FsRow.MaxColIndex","content":"FsRow.MaxColIndex \nMaxColIndex \n The number of the highest column index of the FsRow where an FsCell exists.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrow.html#Index","title":"FsRow.Index","content":"FsRow.Index \nIndex \n The index of the FsRow.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrow.html#MinColIndex","title":"FsRow.MinColIndex","content":"FsRow.MinColIndex \nMinColIndex \n The number of the lowest column index of the FsRow where an FsCell exists.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrow.html#Cells","title":"FsRow.Cells","content":"FsRow.Cells \nCells \n The associated FsCells.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrow.html#copy","title":"FsRow.copy","content":"FsRow.copy \ncopy \n Returns a deep copy of a given FsRow.","headings":[],"type":"apiDocs"},{"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.","headings":[],"type":"apiDocs"},{"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 ","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrow.html#empty","title":"FsRow.empty","content":"FsRow.empty \nempty \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrow.html#getIndex","title":"FsRow.getIndex","content":"FsRow.getIndex \ngetIndex \n Returns the index of the given FsRow.","headings":[],"type":"apiDocs"},{"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 ","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrow.html#insertValueAt","title":"FsRow.insertValueAt","content":"FsRow.insertValueAt \ninsertValueAt \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.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsrow.html#item","title":"FsRow.item","content":"FsRow.item \nitem \n Returns the FsCell at the given columnIndex from an FsRow if it exists. Else creates an ampty FsCell at that position.","headings":[],"type":"apiDocs"},{"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.","headings":[],"type":"apiDocs"},{"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 ","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html","title":"FsTable","content":"FsTable \n Creates an FsTable from the given name and FsRangeAddres, with totals row shown and header row shown or not, accordingly. \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.ShowHeaderRow \nShowHeaderRow \nFsTable.Name \nName \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","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#AddFields","title":"FsTable.AddFields","content":"FsTable.AddFields \nAddFields \n Adds a sequence of FsTableFields to the FsTable.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#Copy","title":"FsTable.Copy","content":"FsTable.Copy \nCopy \n Creates a deep copy of this FsTable.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#Field","title":"FsTable.Field","content":"FsTable.Field \nField \n Returns the FsTableField with given name. If an FsTableField does not exist under this name in the FsTable, adds it.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#GetColumns","title":"FsTable.GetColumns","content":"FsTable.GetColumns \nGetColumns \n\n Returns the FsColumns from the FsTable.\n ","headings":[],"type":"apiDocs"},{"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!","headings":[],"type":"apiDocs"},{"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 ","headings":[],"type":"apiDocs"},{"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 ","headings":[],"type":"apiDocs"},{"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 ","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#GetFieldNames","title":"FsTable.GetFieldNames","content":"FsTable.GetFieldNames \nGetFieldNames \n Returns all fieldnames as \u0060fieldname*FsTableField\u0060 dictionary.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#GetFields","title":"FsTable.GetFields","content":"FsTable.GetFields \nGetFields \n The FsTableFields of this FsTable.","headings":[],"type":"apiDocs"},{"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 ","headings":[],"type":"apiDocs"},{"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 ","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#GetHeaderCellOfTableField","title":"FsTable.GetHeaderCellOfTableField","content":"FsTable.GetHeaderCellOfTableField \nGetHeaderCellOfTableField \n Returns the header cell of a given FsTableField from a given FsCellsCollection.","headings":[],"type":"apiDocs"},{"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 ","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#GetHeaderRow","title":"FsTable.GetHeaderRow","content":"FsTable.GetHeaderRow \nGetHeaderRow \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#GetRows","title":"FsTable.GetRows","content":"FsTable.GetRows \nGetRows \n\n Returns the FsRows from the FsTable.\n ","headings":[],"type":"apiDocs"},{"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 ","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#HeadersRow","title":"FsTable.HeadersRow","content":"FsTable.HeadersRow \nHeadersRow \n Returns the header row as FsRangeRow. Scans for new fieldnames.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#InitFields","title":"FsTable.InitFields","content":"FsTable.InitFields \nInitFields \n Creates and adds FsTableFields from a sequence of field names to the FsTable.","headings":[],"type":"apiDocs"},{"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 ","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#RescanFieldNames","title":"FsTable.RescanFieldNames","content":"FsTable.RescanFieldNames \nRescanFieldNames \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.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#RescanRange","title":"FsTable.RescanRange","content":"FsTable.RescanRange \nRescanRange \n Updates the FsRangeAddress of the FsTable according to the FsTableFields associated.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#TryGetHeaderCellByFieldName","title":"FsTable.TryGetHeaderCellByFieldName","content":"FsTable.TryGetHeaderCellByFieldName \nTryGetHeaderCellByFieldName \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.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#TryGetHeaderCellOfColumn","title":"FsTable.TryGetHeaderCellOfColumn","content":"FsTable.TryGetHeaderCellOfColumn \nTryGetHeaderCellOfColumn \n Returns the header cell of a given FsRangeColumn from a given FsCellsCollection if the cell exists. Else returns None.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#TryGetHeaderCellOfColumnAt","title":"FsTable.TryGetHeaderCellOfColumnAt","content":"FsTable.TryGetHeaderCellOfColumnAt \nTryGetHeaderCellOfColumnAt \n Returns the header cell from a given FsCellsCollection with the given colum index if the cell exists. Else returns None.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#TryGetHeaderCellOfTableFieldAt","title":"FsTable.TryGetHeaderCellOfTableFieldAt","content":"FsTable.TryGetHeaderCellOfTableFieldAt \nTryGetHeaderCellOfTableFieldAt \n Returns the header cell from an FsTableField with the given index using a given FsCellsCollection if the cell exists.\n Else returns None.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#TryGetHeaderRow","title":"FsTable.TryGetHeaderRow","content":"FsTable.TryGetHeaderRow \nTryGetHeaderRow \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#ShowHeaderRow","title":"FsTable.ShowHeaderRow","content":"FsTable.ShowHeaderRow \nShowHeaderRow \n Gets or sets if the header row is shown.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#Name","title":"FsTable.Name","content":"FsTable.Name \nName \n The name of the FsTable.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#addFields","title":"FsTable.addFields","content":"FsTable.addFields \naddFields \n Adds a sequence of FsTableFields to a given FsTable.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#copy","title":"FsTable.copy","content":"FsTable.copy \ncopy \n Returns a deep copy of a given FsTable.","headings":[],"type":"apiDocs"},{"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!","headings":[],"type":"apiDocs"},{"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 ","headings":[],"type":"apiDocs"},{"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 ","headings":[],"type":"apiDocs"},{"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 ","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#getHeaderCellOfTableField","title":"FsTable.getHeaderCellOfTableField","content":"FsTable.getHeaderCellOfTableField \ngetHeaderCellOfTableField \n Returns the header cell of a given FsTableField from a given FsCellsCollection in a given FsTable.","headings":[],"type":"apiDocs"},{"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 ","headings":[],"type":"apiDocs"},{"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 ","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#initFields","title":"FsTable.initFields","content":"FsTable.initFields \ninitFields \n Creates and adds FsTableFields from a sequence of field names to a given FsTable.","headings":[],"type":"apiDocs"},{"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 ","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#rescanRange","title":"FsTable.rescanRange","content":"FsTable.rescanRange \nrescanRange \n Updates the FsRangeAddress of a given FsTable according to the FsTableFields associated.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#tryGetHeaderCellByFieldName","title":"FsTable.tryGetHeaderCellByFieldName","content":"FsTable.tryGetHeaderCellByFieldName \ntryGetHeaderCellByFieldName \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.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#tryGetHeaderCellOfColumn","title":"FsTable.tryGetHeaderCellOfColumn","content":"FsTable.tryGetHeaderCellOfColumn \ntryGetHeaderCellOfColumn \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.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#tryGetHeaderCellOfColumnIndexAt","title":"FsTable.tryGetHeaderCellOfColumnIndexAt","content":"FsTable.tryGetHeaderCellOfColumnIndexAt \ntryGetHeaderCellOfColumnIndexAt \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.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstable.html#tryGetHeaderCellOfTableFieldIndexAt","title":"FsTable.tryGetHeaderCellOfTableFieldIndexAt","content":"FsTable.tryGetHeaderCellOfTableFieldIndexAt \ntryGetHeaderCellOfTableFieldIndexAt \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.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstablefield.html","title":"FsTableField","content":"FsTableField \n Creates an FsTableFiled with given name, index, FsRangeColumn, totalRowLabel, and the totalsRowFunction. \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.Index \nIndex \nFsTableField.Column \nColumn \nFsTableField.Name \nName \nFsTableField.copy \ncopy \nFsTableField.getDataCells \ngetDataCells \nFsTableField.getHeaderCell \ngetHeaderCell \nFsTableField.setName \nsetName","headings":[],"type":"apiDocs"},{"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 Creates an FsTableField with the given name, index, and FsRangeColumn.","headings":[],"type":"apiDocs"},{"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 Creates an FsTableField with the given name and index.","headings":[],"type":"apiDocs"},{"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 Creates an FsTableField with the given name.","headings":[],"type":"apiDocs"},{"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 Creates an empty FsTableField.","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstablefield.html#Copy","title":"FsTableField.Copy","content":"FsTableField.Copy \nCopy \n Creates a deep copy of this FsTableField.","headings":[],"type":"apiDocs"},{"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 ","headings":[],"type":"apiDocs"},{"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 ","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstablefield.html#SetName","title":"FsTableField.SetName","content":"FsTableField.SetName \nSetName \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.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstablefield.html#Index","title":"FsTableField.Index","content":"FsTableField.Index \nIndex \n Gets or sets the 0-based index of the FsTableField inside the associated FsTable. \n Sets the associated FsRangeColumn\u0027s column index accordingly.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstablefield.html#Column","title":"FsTableField.Column","content":"FsTableField.Column \nColumn \n Gets or sets the FsRangeColumn of this FsTableField.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstablefield.html#Name","title":"FsTableField.Name","content":"FsTableField.Name \nName \n The name of this FsTableField.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstablefield.html#copy","title":"FsTableField.copy","content":"FsTableField.copy \ncopy \n Returns a deep copy of a given FsTableField.","headings":[],"type":"apiDocs"},{"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 ","headings":[],"type":"apiDocs"},{"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 ","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstablefield.html#setName","title":"FsTableField.setName","content":"FsTableField.setName \nsetName \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.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fstablerow.html","title":"FsTableRow","content":"FsTableRow \n \nFsTableRow.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html","title":"FsWorkbook","content":"FsWorkbook \n Creates an empty FsWorkbook. \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","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html#AddWorksheet","title":"FsWorkbook.AddWorksheet","content":"FsWorkbook.AddWorksheet \nAddWorksheet \n Adds a given FsWorksheet to the FsWorkbook.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html#AddWorksheets","title":"FsWorkbook.AddWorksheets","content":"FsWorkbook.AddWorksheets \nAddWorksheets \n Adds a collection of FsWorksheets to the FsWorkbook.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html#Copy","title":"FsWorkbook.Copy","content":"FsWorkbook.Copy \nCopy \n Creates a deep copy of this FsWorkbook.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html#GetTables","title":"FsWorkbook.GetTables","content":"FsWorkbook.GetTables \nGetTables \n Returns all FsTables from the FsWorkbook.","headings":[],"type":"apiDocs"},{"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 ","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html#GetWorksheetByName","title":"FsWorkbook.GetWorksheetByName","content":"FsWorkbook.GetWorksheetByName \nGetWorksheetByName \n\n Returns the FsWorksheet with the given name.\n ","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html#GetWorksheets","title":"FsWorkbook.GetWorksheets","content":"FsWorkbook.GetWorksheets \nGetWorksheets \n Returns all FsWorksheets.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html#InitWorksheet","title":"FsWorkbook.InitWorksheet","content":"FsWorkbook.InitWorksheet \nInitWorksheet \n Creates an empty FsWorksheet with given name and adds it to the FsWorkbook.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html#RemoveWorksheet","title":"FsWorkbook.RemoveWorksheet","content":"FsWorkbook.RemoveWorksheet \nRemoveWorksheet \n\n Removes an FsWorksheet with given name.\n ","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html#TryGetWorksheetAt","title":"FsWorkbook.TryGetWorksheetAt","content":"FsWorkbook.TryGetWorksheetAt \nTryGetWorksheetAt \n Returns the FsWorksheet with the given 1 based index if it exists. Else returns None.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html#TryGetWorksheetByName","title":"FsWorkbook.TryGetWorksheetByName","content":"FsWorkbook.TryGetWorksheetByName \nTryGetWorksheetByName \n Returns the FsWorksheet with the given name if it exists in the FsWorkbook. Else returns None.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html#addWorksheet","title":"FsWorkbook.addWorksheet","content":"FsWorkbook.addWorksheet \naddWorksheet \n Adds an FsWorksheet to an FsWorkbook.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html#addWorksheets","title":"FsWorkbook.addWorksheets","content":"FsWorkbook.addWorksheets \naddWorksheets \n Adds a collection of FsWorksheets to an FsWorkbook.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html#copy","title":"FsWorkbook.copy","content":"FsWorkbook.copy \ncopy \n Returns a deep copy of a given FsWorkbook.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html#getTables","title":"FsWorkbook.getTables","content":"FsWorkbook.getTables \ngetTables \n Returns all FsTables from an FsWorkbook.","headings":[],"type":"apiDocs"},{"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 ","headings":[],"type":"apiDocs"},{"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 ","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html#getWorksheets","title":"FsWorkbook.getWorksheets","content":"FsWorkbook.getWorksheets \ngetWorksheets \n Returns all FsWorksheets.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html#initWorksheet","title":"FsWorkbook.initWorksheet","content":"FsWorkbook.initWorksheet \ninitWorksheet \n Creates an empty FsWorksheet with given name and adds it to the FsWorkbook.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html#removeWorksheet","title":"FsWorkbook.removeWorksheet","content":"FsWorkbook.removeWorksheet \nremoveWorksheet \n Removes an FsWorksheet with given name from an FsWorkbook.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html#tryGetWorksheetAt","title":"FsWorkbook.tryGetWorksheetAt","content":"FsWorkbook.tryGetWorksheetAt \ntryGetWorksheetAt \n Returns the FsWorksheet with the given 1 based index if it exists in a given FsWorkbook. Else returns None.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworkbook.html#tryGetWorksheetByName","title":"FsWorkbook.tryGetWorksheetByName","content":"FsWorkbook.tryGetWorksheetByName \ntryGetWorksheetByName \n Returns the FsWorksheet with the given name if it exists in a given FsWorkbook. Else returns None.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html","title":"FsWorksheet","content":"FsWorksheet \n Creates an FsWorksheet with the given name, FsRows, FsTables, and FsCellsCollection. \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.MaxRowIndex \nMaxRowIndex \nFsWorksheet.MaxColumnIndex \nMaxColumnIndex \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","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#AddCell","title":"FsWorksheet.AddCell","content":"FsWorksheet.AddCell \nAddCell \n Adds a FsCell to the FsWorksheet. !Exception if cell address already exists!","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#AddCells","title":"FsWorksheet.AddCells","content":"FsWorksheet.AddCells \nAddCells \n Adds a sequence of FsCells to the FsWorksheet. !Exception if cell address already exists!","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#AddTable","title":"FsWorksheet.AddTable","content":"FsWorksheet.AddTable \nAddTable \n Adds an FsTable to the FsWorksheet if an FsTable with the same name is not already attached.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#AddTables","title":"FsWorksheet.AddTables","content":"FsWorksheet.AddTables \nAddTables \n Adds a list of FsTables to the FsWorksheet. All FsTables with a name already present in the FsWorksheet are not attached.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#Column","title":"FsWorksheet.Column","content":"FsWorksheet.Column \nColumn \n Returns the FsColumn at the given index. If it does not exist, it is created and appended first.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#ColumnWithRange","title":"FsWorksheet.ColumnWithRange","content":"FsWorksheet.ColumnWithRange \nColumnWithRange \n Returns the FsColumn at the given FsRangeAddress. If it does not exist, it is created and appended first.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#ContainsRowAt","title":"FsWorksheet.ContainsRowAt","content":"FsWorksheet.ContainsRowAt \nContainsRowAt \n Returns true if the FsWorksheet contains an FsRow with the given rowIndex.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#Copy","title":"FsWorksheet.Copy","content":"FsWorksheet.Copy \nCopy \n Returns a copy of the FsWorksheet.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#GetCellAt","title":"FsWorksheet.GetCellAt","content":"FsWorksheet.GetCellAt \nGetCellAt \n Returns the FsCell at the given row- and column index. Index is 1 based!","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#GetMaxRowIndex","title":"FsWorksheet.GetMaxRowIndex","content":"FsWorksheet.GetMaxRowIndex \nGetMaxRowIndex \n Returns the highest index of any FsRow.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#GetRowValuesAt","title":"FsWorksheet.GetRowValuesAt","content":"FsWorksheet.GetRowValuesAt \nGetRowValuesAt \n Gets the string values of the FsRow at the given 1-based rowIndex.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#InsertBefore","title":"FsWorksheet.InsertBefore","content":"FsWorksheet.InsertBefore \nInsertBefore \n Inserts an FsRow into the FsWorksheet before a reference FsRow.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#InsertValueAt","title":"FsWorksheet.InsertValueAt","content":"FsWorksheet.InsertValueAt \nInsertValueAt \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.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#InsertValueAt","title":"FsWorksheet.InsertValueAt","content":"FsWorksheet.InsertValueAt \nInsertValueAt \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.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#MapRowsInPlace","title":"FsWorksheet.MapRowsInPlace","content":"FsWorksheet.MapRowsInPlace \nMapRowsInPlace \n Applies function f to all FsRows and returns the modified FsWorksheet.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#RemoveCellAt","title":"FsWorksheet.RemoveCellAt","content":"FsWorksheet.RemoveCellAt \nRemoveCellAt \n Removes the value at the given row- and columnIndex from the FsWorksheet.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#RemoveRowAt","title":"FsWorksheet.RemoveRowAt","content":"FsWorksheet.RemoveRowAt \nRemoveRowAt \n Removes the FsRow at the given rowIndex.","headings":[],"type":"apiDocs"},{"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 ","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#RescanRows","title":"FsWorksheet.RescanRows","content":"FsWorksheet.RescanRows \nRescanRows \n Checks the cell collection and recreate the whole set of rows, so that all cells are placed in a row","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#Row","title":"FsWorksheet.Row","content":"FsWorksheet.Row \nRow \n Returns the FsRow at the given index. If it does not exist, it is created and appended first.","headings":[],"type":"apiDocs"},{"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 ","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#SetValueAt","title":"FsWorksheet.SetValueAt","content":"FsWorksheet.SetValueAt \nSetValueAt \n Adds a value at the given row- and columnIndex.\n\n If an FsCell exists at the given position, overwrites it.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#SortRows","title":"FsWorksheet.SortRows","content":"FsWorksheet.SortRows \nSortRows \n Sorts the FsRows by their rowIndex.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#Table","title":"FsWorksheet.Table","content":"FsWorksheet.Table \nTable \n Returns the FsTable with the given tableName, rangeAddress, and showHeaderRow parameters. If it does not exist yet, it gets created and appended first.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#TryGetCellAt","title":"FsWorksheet.TryGetCellAt","content":"FsWorksheet.TryGetCellAt \nTryGetCellAt \n Returns the FsCell at the given row- and columnIndex if the FsCell exists, else returns None.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#TryGetRowValuesAt","title":"FsWorksheet.TryGetRowValuesAt","content":"FsWorksheet.TryGetRowValuesAt \nTryGetRowValuesAt \n Gets the string values at the given 1-based rowIndex of the FsRow if it exists, else returns None.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#TryRemoveAt","title":"FsWorksheet.TryRemoveAt","content":"FsWorksheet.TryRemoveAt \nTryRemoveAt \n Removes the FsRow at a given rowIndex of the FsWorksheet if the FsRow exists.","headings":[],"type":"apiDocs"},{"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.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#CellCollection","title":"FsWorksheet.CellCollection","content":"FsWorksheet.CellCollection \nCellCollection \n The FsCellCollection of the FsWorksheet.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#MaxRowIndex","title":"FsWorksheet.MaxRowIndex","content":"FsWorksheet.MaxRowIndex \nMaxRowIndex \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#MaxColumnIndex","title":"FsWorksheet.MaxColumnIndex","content":"FsWorksheet.MaxColumnIndex \nMaxColumnIndex \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#Name","title":"FsWorksheet.Name","content":"FsWorksheet.Name \nName \n The name of the FsWorksheet.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#Tables","title":"FsWorksheet.Tables","content":"FsWorksheet.Tables \nTables \n The FsTables of the FsWorksheet.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#Columns","title":"FsWorksheet.Columns","content":"FsWorksheet.Columns \nColumns \n The FsColumns of the FsWorksheet.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#Rows","title":"FsWorksheet.Rows","content":"FsWorksheet.Rows \nRows \n The FsRows of the FsWorksheet.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#addCell","title":"FsWorksheet.addCell","content":"FsWorksheet.addCell \naddCell \n Adds a FsCell to the FsWorksheet. !Exception if cell address already exists!","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#addCells","title":"FsWorksheet.addCells","content":"FsWorksheet.addCells \naddCells \n Adds a sequence of FsCells to the FsWorksheet. !Exception if cell address already exists!","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#addTable","title":"FsWorksheet.addTable","content":"FsWorksheet.addTable \naddTable \n Adds an FsTable to the FsWorksheet if an FsTable with the same name is not already attached.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#addTables","title":"FsWorksheet.addTables","content":"FsWorksheet.addTables \naddTables \n Adds a list of FsTables to an FsWorksheet. All FsTables with a name already present in the FsWorksheet are not attached.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#appendRow","title":"FsWorksheet.appendRow","content":"FsWorksheet.appendRow \nappendRow \n Appends an FsRow to an FsWorksheet if the rowIndex is not already taken.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#containsRowAt","title":"FsWorksheet.containsRowAt","content":"FsWorksheet.containsRowAt \ncontainsRowAt \n Returns true if the FsWorksheet contains an FsRow with the given rowIndex.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#copy","title":"FsWorksheet.copy","content":"FsWorksheet.copy \ncopy \n Returns a copy of a given FsWorksheet.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#countRows","title":"FsWorksheet.countRows","content":"FsWorksheet.countRows \ncountRows \n Returns the number of FsRows contained in the FsWorksheet.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#getCellAt","title":"FsWorksheet.getCellAt","content":"FsWorksheet.getCellAt \ngetCellAt \n Returns the FsCell at the given row- and columnIndex of a given FsWorksheet.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#getColumnAt","title":"FsWorksheet.getColumnAt","content":"FsWorksheet.getColumnAt \ngetColumnAt \n Returns the FsColumn at the given columnIndex of an FsWorksheet.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#getColumns","title":"FsWorksheet.getColumns","content":"FsWorksheet.getColumns \ngetColumns \n Returns the FsColumns of a given FsWorksheet.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#getMaxRowIndex","title":"FsWorksheet.getMaxRowIndex","content":"FsWorksheet.getMaxRowIndex \ngetMaxRowIndex \n Returns the highest index of any FsRow in a given FsWorksheet.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#getRowAt","title":"FsWorksheet.getRowAt","content":"FsWorksheet.getRowAt \ngetRowAt \n Returns the FsRow at the given rowIndex of an FsWorksheet.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#getRowValuesAt","title":"FsWorksheet.getRowValuesAt","content":"FsWorksheet.getRowValuesAt \ngetRowValuesAt \n Gets the string values of the FsRow at the given 1-based rowIndex of a given FsWorksheet.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#getRows","title":"FsWorksheet.getRows","content":"FsWorksheet.getRows \ngetRows \n Returns the FsRows of a given FsWorksheet.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#getTableByName","title":"FsWorksheet.getTableByName","content":"FsWorksheet.getTableByName \ngetTableByName \n Returns the FsTable of the given name from an FsWorksheet.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#init","title":"FsWorksheet.init","content":"FsWorksheet.init \ninit \n Creates an empty FsWorksheet with the given name.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#insertBefore","title":"FsWorksheet.insertBefore","content":"FsWorksheet.insertBefore \ninsertBefore \n Inserts an FsRow into the FsWorksheet before a reference FsRow.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#insertValueAt","title":"FsWorksheet.insertValueAt","content":"FsWorksheet.insertValueAt \ninsertValueAt \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.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#mapRowsInPlace","title":"FsWorksheet.mapRowsInPlace","content":"FsWorksheet.mapRowsInPlace \nmapRowsInPlace \n Applies function f in a given FsWorksheet to all FsRows and returns the modified FsWorksheet.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#removeCellAt","title":"FsWorksheet.removeCellAt","content":"FsWorksheet.removeCellAt \nremoveCellAt \n Removes the value at the given row- and columnIndex from an FsWorksheet.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#removeRowAt","title":"FsWorksheet.removeRowAt","content":"FsWorksheet.removeRowAt \nremoveRowAt \n Removes the FsRow at a given rowIndex of an FsWorksheet.","headings":[],"type":"apiDocs"},{"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 ","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#setValueAt","title":"FsWorksheet.setValueAt","content":"FsWorksheet.setValueAt \nsetValueAt \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.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#tryGetCellAt","title":"FsWorksheet.tryGetCellAt","content":"FsWorksheet.tryGetCellAt \ntryGetCellAt \n Returns the FsCell at the given row- and columnIndex of a given FsWorksheet if the FsCell exists, else returns None.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#tryGetColumnAt","title":"FsWorksheet.tryGetColumnAt","content":"FsWorksheet.tryGetColumnAt \ntryGetColumnAt \n Returns the FsColumn at the given columnIndex of an FsWorksheet if it exists, else returns None.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#tryGetRowAfter","title":"FsWorksheet.tryGetRowAfter","content":"FsWorksheet.tryGetRowAfter \ntryGetRowAfter \n Returns the FsRow matching or exceeding the given rowIndex if it exists, else returns None.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#tryGetRowAt","title":"FsWorksheet.tryGetRowAt","content":"FsWorksheet.tryGetRowAt \ntryGetRowAt \n Returns the FsRow at the given rowIndex of an FsWorksheet if it exists, else returns None.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#tryGetRowValuesAt","title":"FsWorksheet.tryGetRowValuesAt","content":"FsWorksheet.tryGetRowValuesAt \ntryGetRowValuesAt \n Takes an FsWorksheet and gets the string values at the given 1-based rowIndex of the FsRow if it exists, else returns None.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#tryGetTableByName","title":"FsWorksheet.tryGetTableByName","content":"FsWorksheet.tryGetTableByName \ntryGetTableByName \n Returns the FsTable of the given name from an FsWorksheet if it exists. Else returns None.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-fsworksheet.html#tryRemoveAt","title":"FsWorksheet.tryRemoveAt","content":"FsWorksheet.tryRemoveAt \ntryRemoveAt \n Removes the FsRow at a given rowIndex of an FsWorksheet if the FsRow exists.","headings":[],"type":"apiDocs"},{"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.","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-csvio-fsextensions.html#ToSparseRow","title":"FsExtensions.ToSparseRow","content":"FsExtensions.ToSparseRow \nToSparseRow \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-csvio-fsextensions.html#ToSparseTable","title":"FsExtensions.ToSparseTable","content":"FsExtensions.ToSparseTable \nToSparseTable \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-csvio-fsextensions.html#ToTableString","title":"FsExtensions.ToTableString","content":"FsExtensions.ToTableString \nToTableString \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-csvio-fsextensions.html#ToCsvStream","title":"FsExtensions.ToCsvStream","content":"FsExtensions.ToCsvStream \nToCsvStream \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-csvio-fsextensions.html#ToCsvBytes","title":"FsExtensions.ToCsvBytes","content":"FsExtensions.ToCsvBytes \nToCsvBytes \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-csvio-fsextensions.html#ToCsvFile","title":"FsExtensions.ToCsvFile","content":"FsExtensions.ToCsvFile \nToCsvFile \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-csvio-fsextensions.html#toCsvStream","title":"FsExtensions.toCsvStream","content":"FsExtensions.toCsvStream \ntoCsvStream \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-csvio-fsextensions.html#toCsvBytes","title":"FsExtensions.toCsvBytes","content":"FsExtensions.toCsvBytes \ntoCsvBytes \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-csvio-fsextensions.html#toCsvFile","title":"FsExtensions.toCsvFile","content":"FsExtensions.toCsvFile \ntoCsvFile \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-csvio-writer.html","title":"Writer","content":"Writer \n \nWriter.toCsvBytes \ntoCsvBytes \nWriter.toCsvFile \ntoCsvFile \nWriter.toCsvStream \ntoCsvStream","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-csvio-writer.html#toCsvBytes","title":"Writer.toCsvBytes","content":"Writer.toCsvBytes \ntoCsvBytes \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-csvio-writer.html#toCsvFile","title":"Writer.toCsvFile","content":"Writer.toCsvFile \ntoCsvFile \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-csvio-writer.html#toCsvStream","title":"Writer.toCsvStream","content":"Writer.toCsvStream \ntoCsvStream \n","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-expression.html#eval","title":"Expression.eval","content":"Expression.eval \neval \n","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-expression-expressionsource-1.html#Source","title":"ExpressionSource\u003C\u0027T\u003E.Source","content":"ExpressionSource\u003C\u0027T\u003E.Source \nSource \n","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-expression-optionalsource-1.html#Source","title":"OptionalSource\u003C\u0027T\u003E.Source","content":"OptionalSource\u003C\u0027T\u003E.Source \nSource \n","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-expression-requiredsource-1.html#Source","title":"RequiredSource\u003C\u0027T\u003E.Source","content":"RequiredSource\u003C\u0027T\u003E.Source \nSource \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-messages.html","title":"Messages","content":"Messages \n \nMessages.format \nformat \nMessages.fail \nfail","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-messages.html#format","title":"Messages.format","content":"Messages.format \nformat \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-messages.html#fail","title":"Messages.fail","content":"Messages.fail \nfail \n","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-operators.html#parseExpression","title":"Operators.parseExpression","content":"Operators.parseExpression \nparseExpression \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-operators.html#parseOption","title":"Operators.parseOption","content":"Operators.parseOption \nparseOption \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-operators.html#parseResult","title":"Operators.parseResult","content":"Operators.parseResult \nparseResult \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-operators.html#parseAny","title":"Operators.parseAny","content":"Operators.parseAny \nparseAny \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-operators.html#(~\u002B.)","title":"Operators.(~\u002B.)","content":"Operators.(~\u002B.) \n(~\u002B.) \n Required value operator\n\n If expression does fail, returns a missing required value","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-operators.html#(~-.)","title":"Operators.(~-.)","content":"Operators.(~-.) \n(~-.) \n Optional value operator\n\n If expression does fail, returns a missing optional value","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-operators.html#(\u002B.)","title":"Operators.(\u002B.)","content":"Operators.(\u002B.) \n(\u002B.) \n Required value operator\n\n If expression does fail, returns a missing required value","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-operators.html#(-.)","title":"Operators.(-.)","content":"Operators.(-.) \n(-.) \n Optional value operator\n\n If expression does fail, returns a missing optional value","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-operators.html#optional","title":"Operators.optional","content":"Operators.optional \noptional \n Optional operators for cell, row, column and sheet expressions","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-operators.html#required","title":"Operators.required","content":"Operators.required \nrequired \n Required operators for cell, row, column and sheet expressions","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetentityextensions.html","title":"SheetEntityExtensions","content":"SheetEntityExtensions \n \nSheetEntityExtensions.Value \nValue \nSheetEntityExtensions.Value \nValue","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetentityextensions.html#Value","title":"SheetEntityExtensions.Value","content":"SheetEntityExtensions.Value \nValue \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetentityextensions.html#Value","title":"SheetEntityExtensions.Value","content":"SheetEntityExtensions.Value \nValue \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-transform.html","title":"Transform","content":"Transform \n \nTransform.splitRowsAndColumns \nsplitRowsAndColumns \nTransform.Parse \nParse","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-transform.html#splitRowsAndColumns","title":"Transform.splitRowsAndColumns","content":"Transform.splitRowsAndColumns \nsplitRowsAndColumns \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-transform.html#Parse","title":"Transform.Parse","content":"Transform.Parse \nParse \n","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#AsCellElement","title":"CellBuilder.AsCellElement","content":"CellBuilder.AsCellElement \nAsCellElement \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Combine","title":"CellBuilder.Combine","content":"CellBuilder.Combine \nCombine \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Combine","title":"CellBuilder.Combine","content":"CellBuilder.Combine \nCombine \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Combine","title":"CellBuilder.Combine","content":"CellBuilder.Combine \nCombine \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Combine","title":"CellBuilder.Combine","content":"CellBuilder.Combine \nCombine \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Combine","title":"CellBuilder.Combine","content":"CellBuilder.Combine \nCombine \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Combine","title":"CellBuilder.Combine","content":"CellBuilder.Combine \nCombine \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Combine","title":"CellBuilder.Combine","content":"CellBuilder.Combine \nCombine \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Combine","title":"CellBuilder.Combine","content":"CellBuilder.Combine \nCombine \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Combine","title":"CellBuilder.Combine","content":"CellBuilder.Combine \nCombine \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Delay","title":"CellBuilder.Delay","content":"CellBuilder.Delay \nDelay \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#For","title":"CellBuilder.For","content":"CellBuilder.For \nFor \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Quote","title":"CellBuilder.Quote","content":"CellBuilder.Quote \nQuote \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Run","title":"CellBuilder.Run","content":"CellBuilder.Run \nRun \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Run","title":"CellBuilder.Run","content":"CellBuilder.Run \nRun \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Run","title":"CellBuilder.Run","content":"CellBuilder.Run \nRun \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#SignMessages","title":"CellBuilder.SignMessages","content":"CellBuilder.SignMessages \nSignMessages \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Yield","title":"CellBuilder.Yield","content":"CellBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Yield","title":"CellBuilder.Yield","content":"CellBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Yield","title":"CellBuilder.Yield","content":"CellBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Yield","title":"CellBuilder.Yield","content":"CellBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Yield","title":"CellBuilder.Yield","content":"CellBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Yield","title":"CellBuilder.Yield","content":"CellBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Yield","title":"CellBuilder.Yield","content":"CellBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Yield","title":"CellBuilder.Yield","content":"CellBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Yield","title":"CellBuilder.Yield","content":"CellBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#YieldFrom","title":"CellBuilder.YieldFrom","content":"CellBuilder.YieldFrom \nYieldFrom \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Zero","title":"CellBuilder.Zero","content":"CellBuilder.Zero \nZero \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellbuilder.html#Empty","title":"CellBuilder.Empty","content":"CellBuilder.Empty \nEmpty \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellelement.html","title":"CellElement","content":"CellElement \n \nCellElement.Item1 \nItem1 \nCellElement.Item2 \nItem2","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellelement.html#Item1","title":"CellElement.Item1","content":"CellElement.Item1 \nItem1 \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-cellelement.html#Item2","title":"CellElement.Item2","content":"CellElement.Item2 \nItem2 \n","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Combine","title":"ColumnBuilder.Combine","content":"ColumnBuilder.Combine \nCombine \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Combine","title":"ColumnBuilder.Combine","content":"ColumnBuilder.Combine \nCombine \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Combine","title":"ColumnBuilder.Combine","content":"ColumnBuilder.Combine \nCombine \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Combine","title":"ColumnBuilder.Combine","content":"ColumnBuilder.Combine \nCombine \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Combine","title":"ColumnBuilder.Combine","content":"ColumnBuilder.Combine \nCombine \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Combine","title":"ColumnBuilder.Combine","content":"ColumnBuilder.Combine \nCombine \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Combine","title":"ColumnBuilder.Combine","content":"ColumnBuilder.Combine \nCombine \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Combine","title":"ColumnBuilder.Combine","content":"ColumnBuilder.Combine \nCombine \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Combine","title":"ColumnBuilder.Combine","content":"ColumnBuilder.Combine \nCombine \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Delay","title":"ColumnBuilder.Delay","content":"ColumnBuilder.Delay \nDelay \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#For","title":"ColumnBuilder.For","content":"ColumnBuilder.For \nFor \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Quote","title":"ColumnBuilder.Quote","content":"ColumnBuilder.Quote \nQuote \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Run","title":"ColumnBuilder.Run","content":"ColumnBuilder.Run \nRun \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Run","title":"ColumnBuilder.Run","content":"ColumnBuilder.Run \nRun \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Run","title":"ColumnBuilder.Run","content":"ColumnBuilder.Run \nRun \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#SignMessages","title":"ColumnBuilder.SignMessages","content":"ColumnBuilder.SignMessages \nSignMessages \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Yield","title":"ColumnBuilder.Yield","content":"ColumnBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Yield","title":"ColumnBuilder.Yield","content":"ColumnBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Yield","title":"ColumnBuilder.Yield","content":"ColumnBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Yield","title":"ColumnBuilder.Yield","content":"ColumnBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Yield","title":"ColumnBuilder.Yield","content":"ColumnBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Yield","title":"ColumnBuilder.Yield","content":"ColumnBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Yield","title":"ColumnBuilder.Yield","content":"ColumnBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Yield","title":"ColumnBuilder.Yield","content":"ColumnBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Yield","title":"ColumnBuilder.Yield","content":"ColumnBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Yield","title":"ColumnBuilder.Yield","content":"ColumnBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Yield","title":"ColumnBuilder.Yield","content":"ColumnBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Yield","title":"ColumnBuilder.Yield","content":"ColumnBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Yield","title":"ColumnBuilder.Yield","content":"ColumnBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#YieldFrom","title":"ColumnBuilder.YieldFrom","content":"ColumnBuilder.YieldFrom \nYieldFrom \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Zero","title":"ColumnBuilder.Zero","content":"ColumnBuilder.Zero \nZero \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnbuilder.html#Empty","title":"ColumnBuilder.Empty","content":"ColumnBuilder.Empty \nEmpty \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnelement.html","title":"ColumnElement","content":"ColumnElement \n \nColumnElement.IndexedCell \nIndexedCell \nColumnElement.UnindexedCell \nUnindexedCell","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnelement.html#IndexedCell","title":"ColumnElement.IndexedCell","content":"ColumnElement.IndexedCell \nIndexedCell \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnelement.html#UnindexedCell","title":"ColumnElement.UnindexedCell","content":"ColumnElement.UnindexedCell \nUnindexedCell \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnindex.html","title":"ColumnIndex","content":"ColumnIndex \n \nColumnIndex.Index \nIndex \nColumnIndex.Col \nCol","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnindex.html#Index","title":"ColumnIndex.Index","content":"ColumnIndex.Index \nIndex \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-columnindex.html#Col","title":"ColumnIndex.Col","content":"ColumnIndex.Col \nCol \n","headings":[],"type":"apiDocs"},{"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.column \ncolumn \nDSL.workbook \nworkbook \nDSL.row \nrow \nDSL.cell \ncell","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-dsl.html#dropCell","title":"DSL.dropCell","content":"DSL.dropCell \ndropCell \n Drops the cell with the given message","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-dsl.html#dropColumn","title":"DSL.dropColumn","content":"DSL.dropColumn \ndropColumn \n Drops the column with the given message","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-dsl.html#dropRow","title":"DSL.dropRow","content":"DSL.dropRow \ndropRow \n Drops the row with the given message","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-dsl.html#dropSheet","title":"DSL.dropSheet","content":"DSL.dropSheet \ndropSheet \n Drops the sheet with the given message","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-dsl.html#dropWorkbook","title":"DSL.dropWorkbook","content":"DSL.dropWorkbook \ndropWorkbook \n Drops the workbook with the given message","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-dsl.html#opt","title":"DSL.opt","content":"DSL.opt \nopt \n Transforms any given missing element expression to an optional.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-dsl.html#opt","title":"DSL.opt","content":"DSL.opt \nopt \n Transforms any given missing element to an optional.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-dsl.html#sheet","title":"DSL.sheet","content":"DSL.sheet \nsheet \n Create a sheet from rows, tables and columns","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-dsl.html#table","title":"DSL.table","content":"DSL.table \ntable \n Create a table from either exclusively rows or exclusively columns. ","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-dsl.html#column","title":"DSL.column","content":"DSL.column \ncolumn \n Create a column from cells","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-dsl.html#workbook","title":"DSL.workbook","content":"DSL.workbook \nworkbook \n Create a workbook from sheets","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-dsl.html#row","title":"DSL.row","content":"DSL.row \nrow \n Create a row from cells","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-dsl.html#cell","title":"DSL.cell","content":"DSL.cell \ncell \n Create a cell from a value","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-message.html#AsString","title":"Message.AsString","content":"Message.AsString \nAsString \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-message.html#MapText","title":"Message.MapText","content":"Message.MapText \nMapText \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-message.html#TryException","title":"Message.TryException","content":"Message.TryException \nTryException \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-message.html#TryText","title":"Message.TryText","content":"Message.TryText \nTryText \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-message.html#IsExc","title":"Message.IsExc","content":"Message.IsExc \nIsExc \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-message.html#IsTxt","title":"Message.IsTxt","content":"Message.IsTxt \nIsTxt \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-message.html#message","title":"Message.message","content":"Message.message \nmessage \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-message.html#message","title":"Message.message","content":"Message.message \nmessage \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-message.html#Text","title":"Message.Text","content":"Message.Text \nText \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-message.html#Exception","title":"Message.Exception","content":"Message.Exception \nException \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-reduceoperation.html","title":"ReduceOperation","content":"ReduceOperation \n \nReduceOperation.Reduce \nReduce \nReduceOperation.Concat \nConcat","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-reduceoperation.html#Reduce","title":"ReduceOperation.Reduce","content":"ReduceOperation.Reduce \nReduce \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-reduceoperation.html#Concat","title":"ReduceOperation.Concat","content":"ReduceOperation.Concat \nConcat \n","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Combine","title":"RowBuilder.Combine","content":"RowBuilder.Combine \nCombine \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Combine","title":"RowBuilder.Combine","content":"RowBuilder.Combine \nCombine \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Combine","title":"RowBuilder.Combine","content":"RowBuilder.Combine \nCombine \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Combine","title":"RowBuilder.Combine","content":"RowBuilder.Combine \nCombine \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Combine","title":"RowBuilder.Combine","content":"RowBuilder.Combine \nCombine \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Combine","title":"RowBuilder.Combine","content":"RowBuilder.Combine \nCombine \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Combine","title":"RowBuilder.Combine","content":"RowBuilder.Combine \nCombine \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Combine","title":"RowBuilder.Combine","content":"RowBuilder.Combine \nCombine \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Combine","title":"RowBuilder.Combine","content":"RowBuilder.Combine \nCombine \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Delay","title":"RowBuilder.Delay","content":"RowBuilder.Delay \nDelay \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#For","title":"RowBuilder.For","content":"RowBuilder.For \nFor \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Quote","title":"RowBuilder.Quote","content":"RowBuilder.Quote \nQuote \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Run","title":"RowBuilder.Run","content":"RowBuilder.Run \nRun \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Run","title":"RowBuilder.Run","content":"RowBuilder.Run \nRun \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Run","title":"RowBuilder.Run","content":"RowBuilder.Run \nRun \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#SignMessages","title":"RowBuilder.SignMessages","content":"RowBuilder.SignMessages \nSignMessages \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Yield","title":"RowBuilder.Yield","content":"RowBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Yield","title":"RowBuilder.Yield","content":"RowBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Yield","title":"RowBuilder.Yield","content":"RowBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Yield","title":"RowBuilder.Yield","content":"RowBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Yield","title":"RowBuilder.Yield","content":"RowBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Yield","title":"RowBuilder.Yield","content":"RowBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Yield","title":"RowBuilder.Yield","content":"RowBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Yield","title":"RowBuilder.Yield","content":"RowBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Yield","title":"RowBuilder.Yield","content":"RowBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Yield","title":"RowBuilder.Yield","content":"RowBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Yield","title":"RowBuilder.Yield","content":"RowBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Yield","title":"RowBuilder.Yield","content":"RowBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Yield","title":"RowBuilder.Yield","content":"RowBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#YieldFrom","title":"RowBuilder.YieldFrom","content":"RowBuilder.YieldFrom \nYieldFrom \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Zero","title":"RowBuilder.Zero","content":"RowBuilder.Zero \nZero \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowbuilder.html#Empty","title":"RowBuilder.Empty","content":"RowBuilder.Empty \nEmpty \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowelement.html","title":"RowElement","content":"RowElement \n \nRowElement.IndexedCell \nIndexedCell \nRowElement.UnindexedCell \nUnindexedCell","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowelement.html#IndexedCell","title":"RowElement.IndexedCell","content":"RowElement.IndexedCell \nIndexedCell \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowelement.html#UnindexedCell","title":"RowElement.UnindexedCell","content":"RowElement.UnindexedCell \nUnindexedCell \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowindex.html","title":"RowIndex","content":"RowIndex \n \nRowIndex.Index \nIndex \nRowIndex.Row \nRow","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowindex.html#Index","title":"RowIndex.Index","content":"RowIndex.Index \nIndex \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-rowindex.html#Row","title":"RowIndex.Row","content":"RowIndex.Row \nRow \n","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#Combine","title":"SheetBuilder.Combine","content":"SheetBuilder.Combine \nCombine \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#Delay","title":"SheetBuilder.Delay","content":"SheetBuilder.Delay \nDelay \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#For","title":"SheetBuilder.For","content":"SheetBuilder.For \nFor \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#Run","title":"SheetBuilder.Run","content":"SheetBuilder.Run \nRun \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#SignMessages","title":"SheetBuilder.SignMessages","content":"SheetBuilder.SignMessages \nSignMessages \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#Yield","title":"SheetBuilder.Yield","content":"SheetBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#Yield","title":"SheetBuilder.Yield","content":"SheetBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#Yield","title":"SheetBuilder.Yield","content":"SheetBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#Yield","title":"SheetBuilder.Yield","content":"SheetBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#Yield","title":"SheetBuilder.Yield","content":"SheetBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#Yield","title":"SheetBuilder.Yield","content":"SheetBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#Yield","title":"SheetBuilder.Yield","content":"SheetBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#Yield","title":"SheetBuilder.Yield","content":"SheetBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#Yield","title":"SheetBuilder.Yield","content":"SheetBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#Yield","title":"SheetBuilder.Yield","content":"SheetBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#Yield","title":"SheetBuilder.Yield","content":"SheetBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#Yield","title":"SheetBuilder.Yield","content":"SheetBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#Yield","title":"SheetBuilder.Yield","content":"SheetBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#Yield","title":"SheetBuilder.Yield","content":"SheetBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#YieldFrom","title":"SheetBuilder.YieldFrom","content":"SheetBuilder.YieldFrom \nYieldFrom \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#Zero","title":"SheetBuilder.Zero","content":"SheetBuilder.Zero \nZero \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetbuilder.html#Empty","title":"SheetBuilder.Empty","content":"SheetBuilder.Empty \nEmpty \n","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetelement.html#Table","title":"SheetElement.Table","content":"SheetElement.Table \nTable \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetelement.html#IndexedRow","title":"SheetElement.IndexedRow","content":"SheetElement.IndexedRow \nIndexedRow \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetelement.html#UnindexedRow","title":"SheetElement.UnindexedRow","content":"SheetElement.UnindexedRow \nUnindexedRow \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetelement.html#IndexedColumn","title":"SheetElement.IndexedColumn","content":"SheetElement.IndexedColumn \nIndexedColumn \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetelement.html#UnindexedColumn","title":"SheetElement.UnindexedColumn","content":"SheetElement.UnindexedColumn \nUnindexedColumn \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetelement.html#IndexedCell","title":"SheetElement.IndexedCell","content":"SheetElement.IndexedCell \nIndexedCell \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetelement.html#UnindexedCell","title":"SheetElement.UnindexedCell","content":"SheetElement.UnindexedCell \nUnindexedCell \n","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetentity-1.html#Messages","title":"SheetEntity\u003C\u0027T\u003E.Messages","content":"SheetEntity\u003C\u0027T\u003E.Messages \nMessages \n Get messages","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetentity-1.html#some","title":"SheetEntity\u003C\u0027T\u003E.some","content":"SheetEntity\u003C\u0027T\u003E.some \nsome \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetentity-1.html#Some","title":"SheetEntity\u003C\u0027T\u003E.Some","content":"SheetEntity\u003C\u0027T\u003E.Some \nSome \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetentity-1.html#NoneOptional","title":"SheetEntity\u003C\u0027T\u003E.NoneOptional","content":"SheetEntity\u003C\u0027T\u003E.NoneOptional \nNoneOptional \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-sheetentity-1.html#NoneRequired","title":"SheetEntity\u003C\u0027T\u003E.NoneRequired","content":"SheetEntity\u003C\u0027T\u003E.NoneRequired \nNoneRequired \n","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tablebuilder.html#Combine","title":"TableBuilder.Combine","content":"TableBuilder.Combine \nCombine \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tablebuilder.html#Delay","title":"TableBuilder.Delay","content":"TableBuilder.Delay \nDelay \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tablebuilder.html#For","title":"TableBuilder.For","content":"TableBuilder.For \nFor \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tablebuilder.html#Run","title":"TableBuilder.Run","content":"TableBuilder.Run \nRun \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tablebuilder.html#SignMessages","title":"TableBuilder.SignMessages","content":"TableBuilder.SignMessages \nSignMessages \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tablebuilder.html#Yield","title":"TableBuilder.Yield","content":"TableBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tablebuilder.html#Yield","title":"TableBuilder.Yield","content":"TableBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tablebuilder.html#Yield","title":"TableBuilder.Yield","content":"TableBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tablebuilder.html#Yield","title":"TableBuilder.Yield","content":"TableBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tablebuilder.html#Yield","title":"TableBuilder.Yield","content":"TableBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tablebuilder.html#Yield","title":"TableBuilder.Yield","content":"TableBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tablebuilder.html#Yield","title":"TableBuilder.Yield","content":"TableBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tablebuilder.html#Yield","title":"TableBuilder.Yield","content":"TableBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tablebuilder.html#Yield","title":"TableBuilder.Yield","content":"TableBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tablebuilder.html#Yield","title":"TableBuilder.Yield","content":"TableBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tablebuilder.html#YieldFrom","title":"TableBuilder.YieldFrom","content":"TableBuilder.YieldFrom \nYieldFrom \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tablebuilder.html#Zero","title":"TableBuilder.Zero","content":"TableBuilder.Zero \nZero \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tablebuilder.html#Name","title":"TableBuilder.Name","content":"TableBuilder.Name \nName \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tablebuilder.html#Empty","title":"TableBuilder.Empty","content":"TableBuilder.Empty \nEmpty \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tableelement.html","title":"TableElement","content":"TableElement \n \nTableElement.IsRow \nIsRow \nTableElement.IsColumn \nIsColumn \nTableElement.UnindexedRow \nUnindexedRow \nTableElement.UnindexedColumn \nUnindexedColumn","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tableelement.html#IsRow","title":"TableElement.IsRow","content":"TableElement.IsRow \nIsRow \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tableelement.html#IsColumn","title":"TableElement.IsColumn","content":"TableElement.IsColumn \nIsColumn \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tableelement.html#UnindexedRow","title":"TableElement.UnindexedRow","content":"TableElement.UnindexedRow \nUnindexedRow \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-tableelement.html#UnindexedColumn","title":"TableElement.UnindexedColumn","content":"TableElement.UnindexedColumn \nUnindexedColumn \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-value.html","title":"Value","content":"Value \n \nValue.Item1 \nItem1 \nValue.Item2 \nItem2","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-value.html#Item1","title":"Value.Item1","content":"Value.Item1 \nItem1 \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-value.html#Item2","title":"Value.Item2","content":"Value.Item2 \nItem2 \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbook.html","title":"Workbook","content":"Workbook \n \nWorkbook.Workbook \nWorkbook","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbook.html#Workbook","title":"Workbook.Workbook","content":"Workbook.Workbook \nWorkbook \n","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbookbuilder.html#Combine","title":"WorkbookBuilder.Combine","content":"WorkbookBuilder.Combine \nCombine \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbookbuilder.html#Delay","title":"WorkbookBuilder.Delay","content":"WorkbookBuilder.Delay \nDelay \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbookbuilder.html#For","title":"WorkbookBuilder.For","content":"WorkbookBuilder.For \nFor \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbookbuilder.html#Run","title":"WorkbookBuilder.Run","content":"WorkbookBuilder.Run \nRun \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbookbuilder.html#SignMessages","title":"WorkbookBuilder.SignMessages","content":"WorkbookBuilder.SignMessages \nSignMessages \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbookbuilder.html#Yield","title":"WorkbookBuilder.Yield","content":"WorkbookBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbookbuilder.html#Yield","title":"WorkbookBuilder.Yield","content":"WorkbookBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbookbuilder.html#Yield","title":"WorkbookBuilder.Yield","content":"WorkbookBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbookbuilder.html#Yield","title":"WorkbookBuilder.Yield","content":"WorkbookBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbookbuilder.html#Yield","title":"WorkbookBuilder.Yield","content":"WorkbookBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbookbuilder.html#Yield","title":"WorkbookBuilder.Yield","content":"WorkbookBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbookbuilder.html#Yield","title":"WorkbookBuilder.Yield","content":"WorkbookBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbookbuilder.html#Yield","title":"WorkbookBuilder.Yield","content":"WorkbookBuilder.Yield \nYield \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbookbuilder.html#YieldFrom","title":"WorkbookBuilder.YieldFrom","content":"WorkbookBuilder.YieldFrom \nYieldFrom \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbookbuilder.html#Zero","title":"WorkbookBuilder.Zero","content":"WorkbookBuilder.Zero \nZero \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbookbuilder.html#Empty","title":"WorkbookBuilder.Empty","content":"WorkbookBuilder.Empty \nEmpty \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbookelement.html","title":"WorkbookElement","content":"WorkbookElement \n \nWorkbookElement.UnnamedSheet \nUnnamedSheet \nWorkbookElement.NamedSheet \nNamedSheet","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbookelement.html#UnnamedSheet","title":"WorkbookElement.UnnamedSheet","content":"WorkbookElement.UnnamedSheet \nUnnamedSheet \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-dsl-workbookelement.html#NamedSheet","title":"WorkbookElement.NamedSheet","content":"WorkbookElement.NamedSheet \nNamedSheet \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-interactive-formatters.html","title":"Formatters","content":"Formatters \n \nFormatters.formatWorkbook \nformatWorkbook \nFormatters.formatWorksheet \nformatWorksheet","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-interactive-formatters.html#formatWorkbook","title":"Formatters.formatWorkbook","content":"Formatters.formatWorkbook \nformatWorkbook \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-interactive-formatters.html#formatWorksheet","title":"Formatters.formatWorksheet","content":"Formatters.formatWorksheet \nformatWorksheet \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-interactive-formatterkernelextension.html","title":"FormatterKernelExtension","content":"FormatterKernelExtension \n \nFormatterKernelExtension.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-interactive-fssparsematrix-1.html","title":"FsSparseMatrix\u003C\u0027T\u003E","content":"FsSparseMatrix\u003C\u0027T\u003E \n A FsSparseMatrix \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.NumCols \nNumCols \nFsSparseMatrix\u003C\u0027T\u003E.SparseValues \nSparseValues \nFsSparseMatrix\u003C\u0027T\u003E.NumRows \nNumRows \nFsSparseMatrix\u003C\u0027T\u003E.SparseColumnValues \nSparseColumnValues \nFsSparseMatrix\u003C\u0027T\u003E.Item \nItem \nFsSparseMatrix\u003C\u0027T\u003E.SparseRowOffsets \nSparseRowOffsets \nFsSparseMatrix\u003C\u0027T\u003E.init \ninit \nFsSparseMatrix\u003C\u0027T\u003E.toArray2D \ntoArray2D","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-interactive-fssparsematrix-1.html#MaxIndexForRow","title":"FsSparseMatrix\u003C\u0027T\u003E.MaxIndexForRow","content":"FsSparseMatrix\u003C\u0027T\u003E.MaxIndexForRow \nMaxIndexForRow \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-interactive-fssparsematrix-1.html#MinIndexForRow","title":"FsSparseMatrix\u003C\u0027T\u003E.MinIndexForRow","content":"FsSparseMatrix\u003C\u0027T\u003E.MinIndexForRow \nMinIndexForRow \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-interactive-fssparsematrix-1.html#NumCols","title":"FsSparseMatrix\u003C\u0027T\u003E.NumCols","content":"FsSparseMatrix\u003C\u0027T\u003E.NumCols \nNumCols \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-interactive-fssparsematrix-1.html#SparseValues","title":"FsSparseMatrix\u003C\u0027T\u003E.SparseValues","content":"FsSparseMatrix\u003C\u0027T\u003E.SparseValues \nSparseValues \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-interactive-fssparsematrix-1.html#NumRows","title":"FsSparseMatrix\u003C\u0027T\u003E.NumRows","content":"FsSparseMatrix\u003C\u0027T\u003E.NumRows \nNumRows \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-interactive-fssparsematrix-1.html#SparseColumnValues","title":"FsSparseMatrix\u003C\u0027T\u003E.SparseColumnValues","content":"FsSparseMatrix\u003C\u0027T\u003E.SparseColumnValues \nSparseColumnValues \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-interactive-fssparsematrix-1.html#Item","title":"FsSparseMatrix\u003C\u0027T\u003E.Item","content":"FsSparseMatrix\u003C\u0027T\u003E.Item \nItem \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-interactive-fssparsematrix-1.html#SparseRowOffsets","title":"FsSparseMatrix\u003C\u0027T\u003E.SparseRowOffsets","content":"FsSparseMatrix\u003C\u0027T\u003E.SparseRowOffsets \nSparseRowOffsets \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-interactive-fssparsematrix-1.html#init","title":"FsSparseMatrix\u003C\u0027T\u003E.init","content":"FsSparseMatrix\u003C\u0027T\u003E.init \ninit \n Creates a matrix from a sparse sequence ","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-interactive-fssparsematrix-1.html#toArray2D","title":"FsSparseMatrix\u003C\u0027T\u003E.toArray2D","content":"FsSparseMatrix\u003C\u0027T\u003E.toArray2D \ntoArray2D \n Returns the SparseMatrix as Array2D","headings":[],"type":"apiDocs"},{"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.fromRowsJsonString \nfromRowsJsonString \nFsSpreadsheet.toRowsJsonString \ntoRowsJsonString \nFsSpreadsheet.ToRowsJsonString \nToRowsJsonString \nFsSpreadsheet.fromColumnsJsonString \nfromColumnsJsonString \nFsSpreadsheet.toColumnsJsonString \ntoColumnsJsonString \nFsSpreadsheet.ToColumnsJsonString \nToColumnsJsonString","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-fsspreadsheet.html#fromXlsxFile","title":"FsSpreadsheet.fromXlsxFile","content":"FsSpreadsheet.fromXlsxFile \nfromXlsxFile \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-fsspreadsheet.html#fromXlsxStream","title":"FsSpreadsheet.fromXlsxStream","content":"FsSpreadsheet.fromXlsxStream \nfromXlsxStream \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-fsspreadsheet.html#fromXlsxBytes","title":"FsSpreadsheet.fromXlsxBytes","content":"FsSpreadsheet.fromXlsxBytes \nfromXlsxBytes \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-fsspreadsheet.html#toXlsxFile","title":"FsSpreadsheet.toXlsxFile","content":"FsSpreadsheet.toXlsxFile \ntoXlsxFile \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-fsspreadsheet.html#toXlsxStream","title":"FsSpreadsheet.toXlsxStream","content":"FsSpreadsheet.toXlsxStream \ntoXlsxStream \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-fsspreadsheet.html#toXlsxBytes","title":"FsSpreadsheet.toXlsxBytes","content":"FsSpreadsheet.toXlsxBytes \ntoXlsxBytes \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-fsspreadsheet.html#ToXlsxFile","title":"FsSpreadsheet.ToXlsxFile","content":"FsSpreadsheet.ToXlsxFile \nToXlsxFile \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-fsspreadsheet.html#ToXlsxStream","title":"FsSpreadsheet.ToXlsxStream","content":"FsSpreadsheet.ToXlsxStream \nToXlsxStream \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-fsspreadsheet.html#ToXlsxBytes","title":"FsSpreadsheet.ToXlsxBytes","content":"FsSpreadsheet.ToXlsxBytes \nToXlsxBytes \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-fsspreadsheet.html#fromRowsJsonString","title":"FsSpreadsheet.fromRowsJsonString","content":"FsSpreadsheet.fromRowsJsonString \nfromRowsJsonString \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-fsspreadsheet.html#toRowsJsonString","title":"FsSpreadsheet.toRowsJsonString","content":"FsSpreadsheet.toRowsJsonString \ntoRowsJsonString \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-fsspreadsheet.html#ToRowsJsonString","title":"FsSpreadsheet.ToRowsJsonString","content":"FsSpreadsheet.ToRowsJsonString \nToRowsJsonString \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-fsspreadsheet.html#fromColumnsJsonString","title":"FsSpreadsheet.fromColumnsJsonString","content":"FsSpreadsheet.fromColumnsJsonString \nfromColumnsJsonString \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-fsspreadsheet.html#toColumnsJsonString","title":"FsSpreadsheet.toColumnsJsonString","content":"FsSpreadsheet.toColumnsJsonString \ntoColumnsJsonString \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-fsspreadsheet.html#ToColumnsJsonString","title":"FsSpreadsheet.ToColumnsJsonString","content":"FsSpreadsheet.ToColumnsJsonString \nToColumnsJsonString \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-jscell.html","title":"JsCell","content":"JsCell \n \nJsCell.writeFromFsCell \nwriteFromFsCell \nJsCell.readToFsCell \nreadToFsCell","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-jscell.html#writeFromFsCell","title":"JsCell.writeFromFsCell","content":"JsCell.writeFromFsCell \nwriteFromFsCell \n","headings":[],"type":"apiDocs"},{"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 ","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-jstable.html","title":"JsTable","content":"JsTable \n \nJsTable.writeFromFsTable \nwriteFromFsTable \nJsTable.readToFsTable \nreadToFsTable","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-jstable.html#writeFromFsTable","title":"JsTable.writeFromFsTable","content":"JsTable.writeFromFsTable \nwriteFromFsTable \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-jstable.html#readToFsTable","title":"JsTable.readToFsTable","content":"JsTable.readToFsTable \nreadToFsTable \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-jsworkbook.html","title":"JsWorkbook","content":"JsWorkbook \n \nJsWorkbook.writeFromFsWorkbook \nwriteFromFsWorkbook \nJsWorkbook.readToFsWorkbook \nreadToFsWorkbook","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-jsworkbook.html#writeFromFsWorkbook","title":"JsWorkbook.writeFromFsWorkbook","content":"JsWorkbook.writeFromFsWorkbook \nwriteFromFsWorkbook \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-jsworkbook.html#readToFsWorkbook","title":"JsWorkbook.readToFsWorkbook","content":"JsWorkbook.readToFsWorkbook \nreadToFsWorkbook \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-jsworksheet.html","title":"JsWorksheet","content":"JsWorksheet \n \nJsWorksheet.writeFromFsWorksheet \nwriteFromFsWorksheet \nJsWorksheet.readToFsWorksheet \nreadToFsWorksheet","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-jsworksheet.html#writeFromFsWorksheet","title":"JsWorksheet.writeFromFsWorksheet","content":"JsWorksheet.writeFromFsWorksheet \nwriteFromFsWorksheet \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-jsworksheet.html#readToFsWorksheet","title":"JsWorksheet.readToFsWorksheet","content":"JsWorksheet.readToFsWorksheet \nreadToFsWorksheet \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-json.html","title":"Json","content":"Json \n This does currently not correctly work if you want to use this from js\n https://github.com/fable-compiler/Fable/issues/3498 \nJson.fromColumnsJsonString \nfromColumnsJsonString \nJson.fromRowsJsonString \nfromRowsJsonString \nJson.toColumnsJsonString \ntoColumnsJsonString \nJson.toRowsJsonString \ntoRowsJsonString \nJson.tryFromColumnsJsonString \ntryFromColumnsJsonString \nJson.tryFromRowsJsonString \ntryFromRowsJsonString","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-json.html#fromColumnsJsonString","title":"Json.fromColumnsJsonString","content":"Json.fromColumnsJsonString \nfromColumnsJsonString \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-json.html#fromRowsJsonString","title":"Json.fromRowsJsonString","content":"Json.fromRowsJsonString \nfromRowsJsonString \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-json.html#toColumnsJsonString","title":"Json.toColumnsJsonString","content":"Json.toColumnsJsonString \ntoColumnsJsonString \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-json.html#toRowsJsonString","title":"Json.toRowsJsonString","content":"Json.toRowsJsonString \ntoRowsJsonString \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-json.html#tryFromColumnsJsonString","title":"Json.tryFromColumnsJsonString","content":"Json.tryFromColumnsJsonString \ntryFromColumnsJsonString \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-json.html#tryFromRowsJsonString","title":"Json.tryFromRowsJsonString","content":"Json.tryFromRowsJsonString \ntryFromRowsJsonString \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-xlsx.html","title":"Xlsx","content":"Xlsx \n This does currently not correctly work if you want to use this from js\n https://github.com/fable-compiler/Fable/issues/3498 \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","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-xlsx.html#fromBytes","title":"Xlsx.fromBytes","content":"Xlsx.fromBytes \nfromBytes \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-xlsx.html#fromFile","title":"Xlsx.fromFile","content":"Xlsx.fromFile \nfromFile \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-xlsx.html#fromStream","title":"Xlsx.fromStream","content":"Xlsx.fromStream \nfromStream \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-xlsx.html#fromXlsxBytes","title":"Xlsx.fromXlsxBytes","content":"Xlsx.fromXlsxBytes \nfromXlsxBytes \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-xlsx.html#fromXlsxFile","title":"Xlsx.fromXlsxFile","content":"Xlsx.fromXlsxFile \nfromXlsxFile \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-xlsx.html#fromXlsxStream","title":"Xlsx.fromXlsxStream","content":"Xlsx.fromXlsxStream \nfromXlsxStream \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-xlsx.html#toBytes","title":"Xlsx.toBytes","content":"Xlsx.toBytes \ntoBytes \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-xlsx.html#toFile","title":"Xlsx.toFile","content":"Xlsx.toFile \ntoFile \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-xlsx.html#toStream","title":"Xlsx.toStream","content":"Xlsx.toStream \ntoStream \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-xlsx.html#toXlsxBytes","title":"Xlsx.toXlsxBytes","content":"Xlsx.toXlsxBytes \ntoXlsxBytes \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-xlsx.html#toXlsxFile","title":"Xlsx.toXlsxFile","content":"Xlsx.toXlsxFile \ntoXlsxFile \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-js-xlsx.html#toXlsxStream","title":"Xlsx.toXlsxStream","content":"Xlsx.toXlsxStream \ntoXlsxStream \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-cell.html","title":"Cell","content":"Cell \n \nCell.column \ncolumn \nCell.row \nrow \nCell.value \nvalue \nCell.encodeNoNumber \nencodeNoNumber \nCell.encodeRows \nencodeRows \nCell.decodeRows \ndecodeRows \nCell.encodeCols \nencodeCols \nCell.decodeCols \ndecodeCols","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-cell.html#column","title":"Cell.column","content":"Cell.column \ncolumn \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-cell.html#row","title":"Cell.row","content":"Cell.row \nrow \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-cell.html#value","title":"Cell.value","content":"Cell.value \nvalue \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-cell.html#encodeNoNumber","title":"Cell.encodeNoNumber","content":"Cell.encodeNoNumber \nencodeNoNumber \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-cell.html#encodeRows","title":"Cell.encodeRows","content":"Cell.encodeRows \nencodeRows \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-cell.html#decodeRows","title":"Cell.decodeRows","content":"Cell.decodeRows \ndecodeRows \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-cell.html#encodeCols","title":"Cell.encodeCols","content":"Cell.encodeCols \nencodeCols \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-cell.html#decodeCols","title":"Cell.decodeCols","content":"Cell.decodeCols \ndecodeCols \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-column.html","title":"Column","content":"Column \n \nColumn.cells \ncells \nColumn.number \nnumber \nColumn.encode \nencode \nColumn.encodeNoNumbers \nencodeNoNumbers \nColumn.decode \ndecode","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-column.html#cells","title":"Column.cells","content":"Column.cells \ncells \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-column.html#number","title":"Column.number","content":"Column.number \nnumber \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-column.html#encode","title":"Column.encode","content":"Column.encode \nencode \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-column.html#encodeNoNumbers","title":"Column.encodeNoNumbers","content":"Column.encodeNoNumbers \nencodeNoNumbers \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-column.html#decode","title":"Column.decode","content":"Column.decode \ndecode \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-row.html","title":"Row","content":"Row \n \nRow.cells \ncells \nRow.number \nnumber \nRow.encode \nencode \nRow.encodeNoNumbers \nencodeNoNumbers \nRow.decode \ndecode","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-row.html#cells","title":"Row.cells","content":"Row.cells \ncells \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-row.html#number","title":"Row.number","content":"Row.number \nnumber \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-row.html#encode","title":"Row.encode","content":"Row.encode \nencode \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-row.html#encodeNoNumbers","title":"Row.encodeNoNumbers","content":"Row.encodeNoNumbers \nencodeNoNumbers \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-row.html#decode","title":"Row.decode","content":"Row.decode \ndecode \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-table.html","title":"Table","content":"Table \n \nTable.name \nname \nTable.range \nrange \nTable.encode \nencode \nTable.decode \ndecode","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-table.html#name","title":"Table.name","content":"Table.name \nname \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-table.html#range","title":"Table.range","content":"Table.range \nrange \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-table.html#encode","title":"Table.encode","content":"Table.encode \nencode \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-table.html#decode","title":"Table.decode","content":"Table.decode \ndecode \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-value.html","title":"Value","content":"Value \n \nValue.Decode \nDecode \nValue.encode \nencode \nValue.decode \ndecode","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-value.html#encode","title":"Value.encode","content":"Value.encode \nencode \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-value.html#decode","title":"Value.decode","content":"Value.decode \ndecode \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-value-decode.html","title":"Decode","content":"Decode \n \nDecode.datetime \ndatetime","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-value-decode.html#datetime","title":"Decode.datetime","content":"Decode.datetime \ndatetime \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-workbook.html","title":"Workbook","content":"Workbook \n \nWorkbook.sheets \nsheets \nWorkbook.encodeRows \nencodeRows \nWorkbook.decodeRows \ndecodeRows \nWorkbook.encodeColumns \nencodeColumns \nWorkbook.decodeColumns \ndecodeColumns","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-workbook.html#sheets","title":"Workbook.sheets","content":"Workbook.sheets \nsheets \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-workbook.html#encodeRows","title":"Workbook.encodeRows","content":"Workbook.encodeRows \nencodeRows \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-workbook.html#decodeRows","title":"Workbook.decodeRows","content":"Workbook.decodeRows \ndecodeRows \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-workbook.html#encodeColumns","title":"Workbook.encodeColumns","content":"Workbook.encodeColumns \nencodeColumns \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-workbook.html#decodeColumns","title":"Workbook.decodeColumns","content":"Workbook.decodeColumns \ndecodeColumns \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-worksheet.html","title":"Worksheet","content":"Worksheet \n \nWorksheet.name \nname \nWorksheet.rows \nrows \nWorksheet.columns \ncolumns \nWorksheet.tables \ntables \nWorksheet.encodeRows \nencodeRows \nWorksheet.decodeRows \ndecodeRows \nWorksheet.encodeColumns \nencodeColumns \nWorksheet.decodeColumns \ndecodeColumns","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-worksheet.html#name","title":"Worksheet.name","content":"Worksheet.name \nname \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-worksheet.html#rows","title":"Worksheet.rows","content":"Worksheet.rows \nrows \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-worksheet.html#columns","title":"Worksheet.columns","content":"Worksheet.columns \ncolumns \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-worksheet.html#tables","title":"Worksheet.tables","content":"Worksheet.tables \ntables \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-worksheet.html#encodeRows","title":"Worksheet.encodeRows","content":"Worksheet.encodeRows \nencodeRows \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-worksheet.html#decodeRows","title":"Worksheet.decodeRows","content":"Worksheet.decodeRows \ndecodeRows \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-worksheet.html#encodeColumns","title":"Worksheet.encodeColumns","content":"Worksheet.encodeColumns \nencodeColumns \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-json-worksheet.html#decodeColumns","title":"Worksheet.decodeColumns","content":"Worksheet.decodeColumns \ndecodeColumns \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell.html","title":"Cell","content":"Cell \n Functions for creating and manipulating Cells. \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","headings":[],"type":"apiDocs"},{"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.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell.html#empty","title":"Cell.empty","content":"Cell.empty \nempty \n Creates an empty Cell.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell.html#inferCellValue","title":"Cell.inferCellValue","content":"Cell.inferCellValue \ninferCellValue \n Returns the proper CellValues case for the given value.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell.html#create","title":"Cell.create","content":"Cell.create \ncreate \n Creates a Cell from a CellValues type case, a \u0022A1\u0022 style reference, and a CellValue containing the value string.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell.html#createWithFormat","title":"Cell.createWithFormat","content":"Cell.createWithFormat \ncreateWithFormat \n Creates a Cell from a CellValues type case, a \u0022A1\u0022 style reference, and a CellValue containing the value string.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell.html#setSpacePreserveAttribute","title":"Cell.setSpacePreserveAttribute","content":"Cell.setSpacePreserveAttribute \nsetSpacePreserveAttribute \n Sets the preserve attribute of a Cell.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell.html#fromValue","title":"Cell.fromValue","content":"Cell.fromValue \nfromValue \n Create a cell using a shared string table, also returns the updated shared string table.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell.html#getCellContent","title":"Cell.getCellContent","content":"Cell.getCellContent \ngetCellContent \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell.html#fromValueWithDataType","title":"Cell.fromValueWithDataType","content":"Cell.fromValueWithDataType \nfromValueWithDataType \n Create a cell using a shared string table, also returns the updated shared string table.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell.html#getReference","title":"Cell.getReference","content":"Cell.getReference \ngetReference \n Gets \u0022A1\u0022-style Cell reference.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell.html#setReference","title":"Cell.setReference","content":"Cell.setReference \nsetReference \n Sets \u0022A1\u0022-style Cell reference.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell.html#tryGetType","title":"Cell.tryGetType","content":"Cell.tryGetType \ntryGetType \n Gets Some type if existent. Else returns None.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell.html#getType","title":"Cell.getType","content":"Cell.getType \ngetType \n Gets a Cell type.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell.html#setType","title":"Cell.setType","content":"Cell.setType \nsetType \n Sets a Cell type.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell.html#tryGetCellValue","title":"Cell.tryGetCellValue","content":"Cell.tryGetCellValue \ntryGetCellValue \n Gets Some CellValue if cellValue is existent. Else returns None.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell.html#getCellValue","title":"Cell.getCellValue","content":"Cell.getCellValue \ngetCellValue \n Gets the CellValue.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell.html#tryGetValue","title":"Cell.tryGetValue","content":"Cell.tryGetValue \ntryGetValue \n Maps a Cell to the value string using a shared string table.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell.html#getValue","title":"Cell.getValue","content":"Cell.getValue \ngetValue \n Maps a Cell to the value string using a sharedStringTable.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell.html#setValue","title":"Cell.setValue","content":"Cell.setValue \nsetValue \n Sets a CellValue.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell.html#includeSharedStringValue","title":"Cell.includeSharedStringValue","content":"Cell.includeSharedStringValue \nincludeSharedStringValue \n Includes a value from the sharedStringTable in Cell.CellValue.Text.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell-cellvalue.html","title":"CellValue","content":"CellValue \n Functions for manipulating CellValues. \nCellValue.empty \nempty \nCellValue.create \ncreate \nCellValue.getValue \ngetValue \nCellValue.setValue \nsetValue","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell-cellvalue.html#empty","title":"CellValue.empty","content":"CellValue.empty \nempty \n Creates an empty CellValue.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell-cellvalue.html#create","title":"CellValue.create","content":"CellValue.create \ncreate \n Create a new CellValue containing the given string.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell-cellvalue.html#getValue","title":"CellValue.getValue","content":"CellValue.getValue \ngetValue \n Returns the value stored inside the CellValue.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-cell-cellvalue.html#setValue","title":"CellValue.setValue","content":"CellValue.setValue \nsetValue \n Sets the value inside the CellValue.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-celldata.html","title":"CellData","content":"CellData \n Functions for working with CellData. \nCellData.CellDataValue \nCellDataValue \nCellData.CellError \nCellError \nCellData.ofCell \nofCell","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-celldata.html#ofCell","title":"CellData.ofCell","content":"CellData.ofCell \nofCell \n Creates a CellDataValue from a sharedStringTable and a cell.","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-celldata-celldatavalue.html#Number","title":"CellDataValue.Number","content":"CellDataValue.Number \nNumber \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-celldata-celldatavalue.html#String","title":"CellDataValue.String","content":"CellDataValue.String \nString \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-celldata-celldatavalue.html#Boolean","title":"CellDataValue.Boolean","content":"CellDataValue.Boolean \nBoolean \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-celldata-celldatavalue.html#Date","title":"CellDataValue.Date","content":"CellDataValue.Date \nDate \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-celldata-celldatavalue.html#Error","title":"CellDataValue.Error","content":"CellDataValue.Error \nError \n","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-celldata-cellerror.html#Null","title":"CellError.Null","content":"CellError.Null \nNull \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-celldata-cellerror.html#DIV0","title":"CellError.DIV0","content":"CellError.DIV0 \nDIV0 \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-celldata-cellerror.html#VALUE","title":"CellError.VALUE","content":"CellError.VALUE \nVALUE \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-celldata-cellerror.html#REF","title":"CellError.REF","content":"CellError.REF \nREF \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-celldata-cellerror.html#NAME","title":"CellError.NAME","content":"CellError.NAME \nNAME \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-celldata-cellerror.html#NUM","title":"CellError.NUM","content":"CellError.NUM \nNUM \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-celldata-cellerror.html#NA","title":"CellError.NA","content":"CellError.NA \nNA \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-celldata-cellerror.html#GettingDATA","title":"CellError.GettingDATA","content":"CellError.GettingDATA \nGettingDATA \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html","title":"FsExtensions","content":"FsExtensions \n Classes that extend the core FsSpreadsheet library with IO functionalities. \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.tryFromRowsJsonString \ntryFromRowsJsonString \nFsExtensions.fromRowsJsonString \nfromRowsJsonString \nFsExtensions.tryFromRowsJsonFile \ntryFromRowsJsonFile \nFsExtensions.fromRowsJsonFile \nfromRowsJsonFile \nFsExtensions.tryFromColumnsJsonString \ntryFromColumnsJsonString \nFsExtensions.fromColumnsJsonString \nfromColumnsJsonString \nFsExtensions.tryFromColumnsJsonFile \ntryFromColumnsJsonFile \nFsExtensions.fromColumnsJsonFile \nfromColumnsJsonFile \nFsExtensions.ToEmptySpreadsheet \nToEmptySpreadsheet \nFsExtensions.ToXlsxStream \nToXlsxStream \nFsExtensions.toXlsxStream \ntoXlsxStream \nFsExtensions.ToXlsxBytes \nToXlsxBytes \nFsExtensions.toXlsxBytes \ntoXlsxBytes \nFsExtensions.ToXlsxFile \nToXlsxFile \nFsExtensions.toXlsxFile \ntoXlsxFile \nFsExtensions.toRowsJsonString \ntoRowsJsonString \nFsExtensions.toRowsJsonFile \ntoRowsJsonFile \nFsExtensions.ToRowsJsonString \nToRowsJsonString \nFsExtensions.ToRowsJsonFile \nToRowsJsonFile \nFsExtensions.toColumnsJsonString \ntoColumnsJsonString \nFsExtensions.toColumnsJsonFile \ntoColumnsJsonFile \nFsExtensions.ToColumnsJsonString \nToColumnsJsonString \nFsExtensions.ToColumnsJsonFile \nToColumnsJsonFile","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#ofXlsXCell","title":"FsExtensions.ofXlsXCell","content":"FsExtensions.ofXlsXCell \nofXlsXCell \n Converts a given CellValues to the respective DataType.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#ofXlsxCell","title":"FsExtensions.ofXlsxCell","content":"FsExtensions.ofXlsxCell \nofXlsxCell \n Creates an FsCell on the basis of an XlsxCell. Uses a SharedStringTable if present to get the XlsxCell\u0027s value.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#tryOfXlsxCell","title":"FsExtensions.tryOfXlsxCell","content":"FsExtensions.tryOfXlsxCell \ntryOfXlsxCell \n Creates an FsCell on the basis of an XlsxCell. Uses a SharedStringTable if present to get the XlsxCell\u0027s value.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#toXlsxCell","title":"FsExtensions.toXlsxCell","content":"FsExtensions.toXlsxCell \ntoXlsxCell \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#ToXlsxTable","title":"FsExtensions.ToXlsxTable","content":"FsExtensions.ToXlsxTable \nToXlsxTable \n Returns the FsTable with given FsCellsCollection in the form of an XlsxTable.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#toXlsxTable","title":"FsExtensions.toXlsxTable","content":"FsExtensions.toXlsxTable \ntoXlsxTable \n Returns an FsTable with given FsCellsCollection in the form of an XlsxTable.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#fromXlsxTable","title":"FsExtensions.fromXlsxTable","content":"FsExtensions.fromXlsxTable \nfromXlsxTable \n Takes an XlsxTable and returns an FsTable.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#GetWorksheetOfTable","title":"FsExtensions.GetWorksheetOfTable","content":"FsExtensions.GetWorksheetOfTable \nGetWorksheetOfTable \n Returns the FsWorksheet associated with the FsTable in a given FsWorkbook.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#getWorksheetOfTable","title":"FsExtensions.getWorksheetOfTable","content":"FsExtensions.getWorksheetOfTable \ngetWorksheetOfTable \n Returns the FsWorksheet associated with a given FsTable in an FsWorkbook.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#ToXlsxWorksheet","title":"FsExtensions.ToXlsxWorksheet","content":"FsExtensions.ToXlsxWorksheet \nToXlsxWorksheet \n Returns the FsWorksheet in the form of an XlsxSpreadsheet.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#toXlsxWorksheet","title":"FsExtensions.toXlsxWorksheet","content":"FsExtensions.toXlsxWorksheet \ntoXlsxWorksheet \n Returns an FsWorksheet in the form of an XlsxSpreadsheet.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#AppendTablesToWorksheetPart","title":"FsExtensions.AppendTablesToWorksheetPart","content":"FsExtensions.AppendTablesToWorksheetPart \nAppendTablesToWorksheetPart \n Appends the FsTables of this FsWorksheet to a given OpenXmlWorksheetPart in an XlsxWorkbookPart.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#appendTablesToWorksheetPart","title":"FsExtensions.appendTablesToWorksheetPart","content":"FsExtensions.appendTablesToWorksheetPart \nappendTablesToWorksheetPart \n Appends the FsTables of an FsWorksheet to a given OpenXmlWorksheetPart in an XlsxWorkbookPart.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#fromSpreadsheetDocument","title":"FsExtensions.fromSpreadsheetDocument","content":"FsExtensions.fromSpreadsheetDocument \nfromSpreadsheetDocument \n Creates an FsWorkbook from a given SpreadsheetDocument.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#fromPackage","title":"FsExtensions.fromPackage","content":"FsExtensions.fromPackage \nfromPackage \n Creates an FsWorkbook from a given Packaging.Package xlsx package.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#fromXlsxStream","title":"FsExtensions.fromXlsxStream","content":"FsExtensions.fromXlsxStream \nfromXlsxStream \n Creates an FsWorkbook from a given Stream to an XlsxFile.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#fromXlsxBytes","title":"FsExtensions.fromXlsxBytes","content":"FsExtensions.fromXlsxBytes \nfromXlsxBytes \n Creates an FsWorkbook from a given Stream to an XlsxFile.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#fromXlsxFile","title":"FsExtensions.fromXlsxFile","content":"FsExtensions.fromXlsxFile \nfromXlsxFile \n Takes the path to an Xlsx file and returns the FsWorkbook based on its content.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#tryFromRowsJsonString","title":"FsExtensions.tryFromRowsJsonString","content":"FsExtensions.tryFromRowsJsonString \ntryFromRowsJsonString \n Takes a json string and returns the FsWorkbook based on its content.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#fromRowsJsonString","title":"FsExtensions.fromRowsJsonString","content":"FsExtensions.fromRowsJsonString \nfromRowsJsonString \n Takes a json string and returns the FsWorkbook based on its content.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#tryFromRowsJsonFile","title":"FsExtensions.tryFromRowsJsonFile","content":"FsExtensions.tryFromRowsJsonFile \ntryFromRowsJsonFile \n Takes the path to an json file and returns the FsWorkbook based on its content.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#fromRowsJsonFile","title":"FsExtensions.fromRowsJsonFile","content":"FsExtensions.fromRowsJsonFile \nfromRowsJsonFile \n Takes the path to an json file and returns the FsWorkbook based on its content.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#tryFromColumnsJsonString","title":"FsExtensions.tryFromColumnsJsonString","content":"FsExtensions.tryFromColumnsJsonString \ntryFromColumnsJsonString \n Takes a json string and returns the FsWorkbook based on its content.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#fromColumnsJsonString","title":"FsExtensions.fromColumnsJsonString","content":"FsExtensions.fromColumnsJsonString \nfromColumnsJsonString \n Takes a json string and returns the FsWorkbook based on its content.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#tryFromColumnsJsonFile","title":"FsExtensions.tryFromColumnsJsonFile","content":"FsExtensions.tryFromColumnsJsonFile \ntryFromColumnsJsonFile \n Takes the path to an json file and returns the FsWorkbook based on its content.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#fromColumnsJsonFile","title":"FsExtensions.fromColumnsJsonFile","content":"FsExtensions.fromColumnsJsonFile \nfromColumnsJsonFile \n Takes the path to an json file and returns the FsWorkbook based on its content.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#ToEmptySpreadsheet","title":"FsExtensions.ToEmptySpreadsheet","content":"FsExtensions.ToEmptySpreadsheet \nToEmptySpreadsheet \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#ToXlsxStream","title":"FsExtensions.ToXlsxStream","content":"FsExtensions.ToXlsxStream \nToXlsxStream \n Writes the FsWorkbook into a given MemoryStream.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#toXlsxStream","title":"FsExtensions.toXlsxStream","content":"FsExtensions.toXlsxStream \ntoXlsxStream \n Writes an FsWorkbook into a given MemoryStream.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#ToXlsxBytes","title":"FsExtensions.ToXlsxBytes","content":"FsExtensions.ToXlsxBytes \nToXlsxBytes \n Returns the FsWorkbook in the form of a byte array.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#toXlsxBytes","title":"FsExtensions.toXlsxBytes","content":"FsExtensions.toXlsxBytes \ntoXlsxBytes \n Returns an FsWorkbook in the form of a byte array.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#ToXlsxFile","title":"FsExtensions.ToXlsxFile","content":"FsExtensions.ToXlsxFile \nToXlsxFile \n Writes the FsWorkbook into a binary file at the given path.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#toXlsxFile","title":"FsExtensions.toXlsxFile","content":"FsExtensions.toXlsxFile \ntoXlsxFile \n Writes an FsWorkbook into a binary file at the given path.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#toRowsJsonString","title":"FsExtensions.toRowsJsonString","content":"FsExtensions.toRowsJsonString \ntoRowsJsonString \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#toRowsJsonFile","title":"FsExtensions.toRowsJsonFile","content":"FsExtensions.toRowsJsonFile \ntoRowsJsonFile \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#ToRowsJsonString","title":"FsExtensions.ToRowsJsonString","content":"FsExtensions.ToRowsJsonString \nToRowsJsonString \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#ToRowsJsonFile","title":"FsExtensions.ToRowsJsonFile","content":"FsExtensions.ToRowsJsonFile \nToRowsJsonFile \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#toColumnsJsonString","title":"FsExtensions.toColumnsJsonString","content":"FsExtensions.toColumnsJsonString \ntoColumnsJsonString \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#toColumnsJsonFile","title":"FsExtensions.toColumnsJsonFile","content":"FsExtensions.toColumnsJsonFile \ntoColumnsJsonFile \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#ToColumnsJsonString","title":"FsExtensions.ToColumnsJsonString","content":"FsExtensions.ToColumnsJsonString \nToColumnsJsonString \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-fsextensions.html#ToColumnsJsonFile","title":"FsExtensions.ToColumnsJsonFile","content":"FsExtensions.ToColumnsJsonFile \nToColumnsJsonFile \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-package.html","title":"Package","content":"Package \n \nPackage.tryGetApplication \ntryGetApplication \nPackage.fixLibrePackage \nfixLibrePackage \nPackage.isLibrePackage \nisLibrePackage","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-package.html#tryGetApplication","title":"Package.tryGetApplication","content":"Package.tryGetApplication \ntryGetApplication \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-package.html#fixLibrePackage","title":"Package.fixLibrePackage","content":"Package.fixLibrePackage \nfixLibrePackage \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-package.html#isLibrePackage","title":"Package.isLibrePackage","content":"Package.isLibrePackage \nisLibrePackage \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html","title":"Row","content":"Row \n Functions for working with rows (unmanaged: spans and cell references do not get automatically updated). \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","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#empty","title":"Row.empty","content":"Row.empty \nempty \n Creates an empty Row.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#toCellSeq","title":"Row.toCellSeq","content":"Row.toCellSeq \ntoCellSeq \n Returns a sequence of cells contained in the row.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#isEmpty","title":"Row.isEmpty","content":"Row.isEmpty \nisEmpty \n Returns true if the row contains no cells.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#iterCells","title":"Row.iterCells","content":"Row.iterCells \niterCells \n Iterates through all cells of a row with the given function f.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#mapCells","title":"Row.mapCells","content":"Row.mapCells \nmapCells \n Applies the function f to all cells of a row.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#findCell","title":"Row.findCell","content":"Row.findCell \nfindCell \n Returns the first cell in the row for which the predicate returns true.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#insertCellBefore","title":"Row.insertCellBefore","content":"Row.insertCellBefore \ninsertCellBefore \n Inserts a cell into the row before a reference cell.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#getIndex","title":"Row.getIndex","content":"Row.getIndex \ngetIndex \n Returns the rowIndex of the row.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#setIndex","title":"Row.setIndex","content":"Row.setIndex \nsetIndex \n Sets the rowIndex of the row","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#containsCellAt","title":"Row.containsCellAt","content":"Row.containsCellAt \ncontainsCellAt \n Returns true if the row contains a cell with the given columnIndex.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#getCellAt","title":"Row.getCellAt","content":"Row.getCellAt \ngetCellAt \n Returns cell with the given columnIndex.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#tryGetCellAt","title":"Row.tryGetCellAt","content":"Row.tryGetCellAt \ntryGetCellAt \n Returns cell with the given columnIndex if it exists, else returns none.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#tryGetCellAfter","title":"Row.tryGetCellAfter","content":"Row.tryGetCellAfter \ntryGetCellAfter \n Returns cell matching or exceeding the given column index if it exists, else returns none.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#getSpan","title":"Row.getSpan","content":"Row.getSpan \ngetSpan \n Returns the spans of the row.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#setSpan","title":"Row.setSpan","content":"Row.setSpan \nsetSpan \n Sets the spans of the row.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#extendSpanRight","title":"Row.extendSpanRight","content":"Row.extendSpanRight \nextendSpanRight \n Extends the right boundary of the spans of the row by the given amount (positive amount increases spans to right and vice versa).","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#extendSpanLeft","title":"Row.extendSpanLeft","content":"Row.extendSpanLeft \nextendSpanLeft \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).","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#appendCell","title":"Row.appendCell","content":"Row.appendCell \nappendCell \n Append cell to the end of the row.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#create","title":"Row.create","content":"Row.create \ncreate \n Creates a row from the given rowIndex, columnSpans, and cells.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#removeCellAt","title":"Row.removeCellAt","content":"Row.removeCellAt \nremoveCellAt \n Removes the cell at the given columnIndex from the row.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#tryRemoveCellAt","title":"Row.tryRemoveCellAt","content":"Row.tryRemoveCellAt \ntryRemoveCellAt \n Removes the cell at the given columnIndex from the row if present. Returns none if not.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#tryGetValueAt","title":"Row.tryGetValueAt","content":"Row.tryGetValueAt \ntryGetValueAt \n If the row contains a value at the given index, returns it. Returns none if not.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#updateRowSpan","title":"Row.updateRowSpan","content":"Row.updateRowSpan \nupdateRowSpan \n Matches the rowSpan to the cell references inside the row.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#updateRowIndex","title":"Row.updateRowIndex","content":"Row.updateRowIndex \nupdateRowIndex \n Sets the rowIndex of the row and the row indices of the cells in the row to the given 1-based index.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#ofValues","title":"Row.ofValues","content":"Row.ofValues \nofValues \n Creates a new row from the given values.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#moveValueBlockToRight","title":"Row.moveValueBlockToRight","content":"Row.moveValueBlockToRight \nmoveValueBlockToRight \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.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#moveValuesToRight","title":"Row.moveValuesToRight","content":"Row.moveValuesToRight \nmoveValuesToRight \n Moves all cells starting with the given columnIndex in the row to the right by the given offset.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#getIndexedValues","title":"Row.getIndexedValues","content":"Row.getIndexedValues \ngetIndexedValues \n Maps the cells of the given row to tuples of 1-based column indices and the value strings using a sharedStringTable.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#getRowValues","title":"Row.getRowValues","content":"Row.getRowValues \ngetRowValues \n Maps the cells of the given row to the value strings.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#tryGetRowValues","title":"Row.tryGetRowValues","content":"Row.tryGetRowValues \ntryGetRowValues \n Maps each cell of the given row to each respective value strings if it exists, else returns None.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#getPresentRowValues","title":"Row.getPresentRowValues","content":"Row.getPresentRowValues \ngetPresentRowValues \n Maps the cells of the given row to the value strings for all existing cells.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#insertValue","title":"Row.insertValue","content":"Row.insertValue \ninsertValue \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.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#insertValueAt","title":"Row.insertValueAt","content":"Row.insertValueAt \ninsertValueAt \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.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#appendValue","title":"Row.appendValue","content":"Row.appendValue \nappendValue \n Adds a value as a cell to the end of the row.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#setValue","title":"Row.setValue","content":"Row.setValue \nsetValue \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.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row.html#includeSharedStringValue","title":"Row.includeSharedStringValue","content":"Row.includeSharedStringValue \nincludeSharedStringValue \n Includes a value from a sharedStringTable in the cells of the row.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row-spans.html","title":"Spans","content":"Spans \n Functions for working with spans. The spans mark the column wise area in which the row lies. \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","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row-spans.html#fromBoundaries","title":"Spans.fromBoundaries","content":"Spans.fromBoundaries \nfromBoundaries \n Given 1 based column start and end indices, returns a \u00221:1\u0022 style spans.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row-spans.html#toBoundaries","title":"Spans.toBoundaries","content":"Spans.toBoundaries \ntoBoundaries \n Given a \u00221:1\u0022 style spans, returns 1 based column start and end indices.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row-spans.html#rightBoundary","title":"Spans.rightBoundary","content":"Spans.rightBoundary \nrightBoundary \n Gets the right boundary of the spans.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row-spans.html#leftBoundary","title":"Spans.leftBoundary","content":"Spans.leftBoundary \nleftBoundary \n Gets the left boundary of the spans.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row-spans.html#moveHorizontal","title":"Spans.moveHorizontal","content":"Spans.moveHorizontal \nmoveHorizontal \n Moves both start and end of the spans by the given amount (positive amount moves spans to right and vice versa).","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row-spans.html#extendRight","title":"Spans.extendRight","content":"Spans.extendRight \nextendRight \n Extends the right boundary of the spans by the given amount (positive amount increases spans to right and vice versa).","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row-spans.html#extendLeft","title":"Spans.extendLeft","content":"Spans.extendLeft \nextendLeft \n Extends the left boundary of the spans by the given amount (positive amount decreases the spans to left and vice versa).","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row-spans.html#referenceExceedsSpansToRight","title":"Spans.referenceExceedsSpansToRight","content":"Spans.referenceExceedsSpansToRight \nreferenceExceedsSpansToRight \n Returns true if the column index of the reference exceeds the right boundary of the spans.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row-spans.html#referenceExceedsSpansToLeft","title":"Spans.referenceExceedsSpansToLeft","content":"Spans.referenceExceedsSpansToLeft \nreferenceExceedsSpansToLeft \n Returns true if the column index of the reference exceeds the left boundary of the spans.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-row-spans.html#referenceExceedsSpans","title":"Spans.referenceExceedsSpans","content":"Spans.referenceExceedsSpans \nreferenceExceedsSpans \n Returns true if the column index of the reference does not lie in the boundary of the spans.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sharedstringtable.html","title":"SharedStringTable","content":"SharedStringTable \n Functions for working with SharedStringTables. \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","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sharedstringtable.html#empty","title":"SharedStringTable.empty","content":"SharedStringTable.empty \nempty \n Creates an empty sharedStringTable.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sharedstringtable.html#init","title":"SharedStringTable.init","content":"SharedStringTable.init \ninit \n Sets an empty sharedStringTable.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sharedstringtable.html#get","title":"SharedStringTable.get","content":"SharedStringTable.get \nget \n Gets the sharedStringTable of the sharedStringTablePart.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sharedstringtable.html#set","title":"SharedStringTable.set","content":"SharedStringTable.set \nset \n Sets the sharedStringtable of the sharedStringTablePart.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sharedstringtable.html#toSeq","title":"SharedStringTable.toSeq","content":"SharedStringTable.toSeq \ntoSeq \n Returns the sharedStringItems contained in the sharedStringTable.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sharedstringtable.html#getIndexByString","title":"SharedStringTable.getIndexByString","content":"SharedStringTable.getIndexByString \ngetIndexByString \n Returns the index of the string, or the invers of the element count.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sharedstringtable.html#tryGetIndexByString","title":"SharedStringTable.tryGetIndexByString","content":"SharedStringTable.tryGetIndexByString \ntryGetIndexByString \n If the string is contained in the sharedStringTable, contains the index of its position.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sharedstringtable.html#getText","title":"SharedStringTable.getText","content":"SharedStringTable.getText \ngetText \n Returns the sharedStringItem at the given index.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sharedstringtable.html#count","title":"SharedStringTable.count","content":"SharedStringTable.count \ncount \n Number of sharedStringItems in the sharedStringTable.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sharedstringtable.html#append","title":"SharedStringTable.append","content":"SharedStringTable.append \nappend \n Appends the SharedStringItem to the end of the SharedStringTable.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sharedstringtable.html#insertText","title":"SharedStringTable.insertText","content":"SharedStringTable.insertText \ninsertText \n Inserts text into the sharedStringTable. If the item already exists, returns its index.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sharedstringtable.html#tryGet","title":"SharedStringTable.tryGet","content":"SharedStringTable.tryGet \ntryGet \n Gets the sharedStringTable of the spreadsheet if it exists, else returns None.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sharedstringtable.html#toSST","title":"SharedStringTable.toSST","content":"SharedStringTable.toSST \ntoSST \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sharedstringtable-sharedstringitem.html","title":"SharedStringItem","content":"SharedStringItem \n Functions for working with SharedStringItems. \nSharedStringItem.getText \ngetText \nSharedStringItem.setText \nsetText \nSharedStringItem.create \ncreate \nSharedStringItem.add \nadd","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sharedstringtable-sharedstringitem.html#getText","title":"SharedStringItem.getText","content":"SharedStringItem.getText \ngetText \n Gets the string contained in the sharedStringItem.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sharedstringtable-sharedstringitem.html#setText","title":"SharedStringItem.setText","content":"SharedStringItem.setText \nsetText \n Sets the string contained in the sharedStringItem.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sharedstringtable-sharedstringitem.html#create","title":"SharedStringItem.create","content":"SharedStringItem.create \ncreate \n Creates a sharedStringItem containing the given string.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sharedstringtable-sharedstringitem.html#add","title":"SharedStringItem.add","content":"SharedStringItem.add \nadd \n Adds the sharedStringItem to the sharedStringTable.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet.html","title":"Sheet","content":"Sheet \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) \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","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet.html#empty","title":"Sheet.empty","content":"Sheet.empty \nempty \n Creates an empty Sheet.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet.html#setName","title":"Sheet.setName","content":"Sheet.setName \nsetName \n Sets the name of the sheet (this is the name displayed in MS Excel).","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet.html#getName","title":"Sheet.getName","content":"Sheet.getName \ngetName \n Gets the name of the sheet (this is the name displayed in MS Excel).","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet.html#setID","title":"Sheet.setID","content":"Sheet.setID \nsetID \n Sets the ID of the sheet (this ID associates the sheet with the worksheet).","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet.html#getID","title":"Sheet.getID","content":"Sheet.getID \ngetID \n Gets the ID of the sheet (this ID associates the sheet with the worksheet).","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet.html#setSheetIndex","title":"Sheet.setSheetIndex","content":"Sheet.setSheetIndex \nsetSheetIndex \n Sets the SheetID of the sheet (this ID determines the position of the sheet tab in MS Excel).","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet.html#getSheetIndex","title":"Sheet.getSheetIndex","content":"Sheet.getSheetIndex \ngetSheetIndex \n Gets the SheetID of the sheet (this ID determines the position of the sheet tab in MS Excel).","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet.html#create","title":"Sheet.create","content":"Sheet.create \ncreate \n Create a sheet from the id, the name and the sheetID.","headings":[],"type":"apiDocs"},{"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.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet.html#tryGetById","title":"Sheet.tryGetById","content":"Sheet.tryGetById \ntryGetById \n Returns the with the given ID in the SpreadsheetDocument if it exists. Else returns None.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet.html#tryItemByName","title":"Sheet.tryItemByName","content":"Sheet.tryItemByName \ntryItemByName \n Returns the item with the given name in the spreadsheetDocument if it exists. Else returns None.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet.html#add","title":"Sheet.add","content":"Sheet.add \nadd \n Adds the given sheet to the spreadsheetDocument.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet.html#remove","title":"Sheet.remove","content":"Sheet.remove \nremove \n Removes the given sheet from the sheets.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet.html#tryFind","title":"Sheet.tryFind","content":"Sheet.tryFind \ntryFind \n Returns the sheet for which the predicate returns true (Id Name SheetID -\u003E bool)","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet.html#countSheets","title":"Sheet.countSheets","content":"Sheet.countSheets \ncountSheets \n Counts the number of sheets in the spreadsheetDocument.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet-sheets.html","title":"Sheets","content":"Sheets \n Functions for working with Sheets. \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","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet-sheets.html#empty","title":"Sheets.empty","content":"Sheets.empty \nempty \n Creates empty sheets.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet-sheets.html#getFirstSheet","title":"Sheets.getFirstSheet","content":"Sheets.getFirstSheet \ngetFirstSheet \n Returns the first child sheet of the sheets.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet-sheets.html#getSheets","title":"Sheets.getSheets","content":"Sheets.getSheets \ngetSheets \n Returns all sheets of the sheets.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet-sheets.html#addSheet","title":"Sheets.addSheet","content":"Sheets.addSheet \naddSheet \n Adds a single Sheet to the Sheets.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet-sheets.html#addSheets","title":"Sheets.addSheets","content":"Sheets.addSheets \naddSheets \n Adds a Sheet collection to the Sheets.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet-sheets.html#get","title":"Sheets.get","content":"Sheets.get \nget \n Gets the sheets of the workbook.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet-sheets.html#init","title":"Sheets.init","content":"Sheets.init \ninit \n Add an empty sheets element to the workbook.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet-sheets.html#getOrInit","title":"Sheets.getOrInit","content":"Sheets.getOrInit \ngetOrInit \n Returns the existing or a newly created sheets associated with the worksheet.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheet-sheets.html#tryGetSheetByName","title":"Sheets.tryGetSheetByName","content":"Sheets.tryGetSheetByName \ntryGetSheetByName \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html","title":"SheetData","content":"SheetData \n Functions for working with SheetData. (Unmanaged: Row indices and cell references do not automatically get updated) \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","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#empty","title":"SheetData.empty","content":"SheetData.empty \nempty \n Creates an empty SheetData.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#insertBefore","title":"SheetData.insertBefore","content":"SheetData.insertBefore \ninsertBefore \n Inserts a row into the SheetData before a reference row.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#appendRow","title":"SheetData.appendRow","content":"SheetData.appendRow \nappendRow \n Append a row to the end of the SheetData.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#getRows","title":"SheetData.getRows","content":"SheetData.getRows \ngetRows \n Returns a sequence of rows contained in the SheetData.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#mapRows","title":"SheetData.mapRows","content":"SheetData.mapRows \nmapRows \n Applies the given function f onto every row in the SheetData.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#countRows","title":"SheetData.countRows","content":"SheetData.countRows \ncountRows \n Returns the number of rows contained in the SheetData.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#tryGetRowAfter","title":"SheetData.tryGetRowAfter","content":"SheetData.tryGetRowAfter \ntryGetRowAfter \n Returns row matching or exceeding the given row index if it exists, else returns None.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#tryGetRowAt","title":"SheetData.tryGetRowAt","content":"SheetData.tryGetRowAt \ntryGetRowAt \n Returns the row with the given rowIndex if it exists, else returns None.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#getRowAt","title":"SheetData.getRowAt","content":"SheetData.getRowAt \ngetRowAt \n Returns the row with the given rowIndex.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#containsRowAt","title":"SheetData.containsRowAt","content":"SheetData.containsRowAt \ncontainsRowAt \n Returns true if the SheetData contains a row with the given rowIndex.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#removeRowAt","title":"SheetData.removeRowAt","content":"SheetData.removeRowAt \nremoveRowAt \n Removes the row at the given rowIndex.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#tryRemoveRowAt","title":"SheetData.tryRemoveRowAt","content":"SheetData.tryRemoveRowAt \ntryRemoveRowAt \n Removes the row at the given rowIndex if it exists, else it returns None.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#moveRowVertical","title":"SheetData.moveRowVertical","content":"SheetData.moveRowVertical \nmoveRowVertical \n If the row with index rowIndex exists in the sheet, moves it downwards by amount. Negative amounts will move the row upwards.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#moveRowBlockDownward","title":"SheetData.moveRowBlockDownward","content":"SheetData.moveRowBlockDownward \nmoveRowBlockDownward \n\u003Cpre\u003EIf 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.\u003C/pre\u003E","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#getMaxRowIndex","title":"SheetData.getMaxRowIndex","content":"SheetData.getMaxRowIndex \ngetMaxRowIndex \n Returns the index of the last row in the sheet.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#tryGetRowValuesAt","title":"SheetData.tryGetRowValuesAt","content":"SheetData.tryGetRowValuesAt \ntryGetRowValuesAt \n Gets the string value of the cell at the given 1-based column and rowIndex, if it exists, else returns None.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#getRowValuesAt","title":"SheetData.getRowValuesAt","content":"SheetData.getRowValuesAt \ngetRowValuesAt \n Gets the string values of the row at the given 1-based rowIndex.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#tryGetIndexedRowValuesAt","title":"SheetData.tryGetIndexedRowValuesAt","content":"SheetData.tryGetIndexedRowValuesAt \ntryGetIndexedRowValuesAt \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.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#insertRowWithHorizontalOffsetAt","title":"SheetData.insertRowWithHorizontalOffsetAt","content":"SheetData.insertRowWithHorizontalOffsetAt \ninsertRowWithHorizontalOffsetAt \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.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#insertRowValuesAt","title":"SheetData.insertRowValuesAt","content":"SheetData.insertRowValuesAt \ninsertRowValuesAt \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.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#appendRowValues","title":"SheetData.appendRowValues","content":"SheetData.appendRowValues \nappendRowValues \n Append the values as a row to the end of the sheet.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#appendValueToRowAt","title":"SheetData.appendValueToRowAt","content":"SheetData.appendValueToRowAt \nappendValueToRowAt \n Append the value as a cell to the end of the row.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#deleteRowAt","title":"SheetData.deleteRowAt","content":"SheetData.deleteRowAt \ndeleteRowAt \n Removes row from sheet and move the following rows up.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#tryGetCellAt","title":"SheetData.tryGetCellAt","content":"SheetData.tryGetCellAt \ntryGetCellAt \n Return a cell at the given row- and columnIndex in the SheetData if it exists. Else returns None.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#getCellAt","title":"SheetData.getCellAt","content":"SheetData.getCellAt \ngetCellAt \n Returns a cell at the given row- and columnIndex in the SheetData.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#getCellValueAt","title":"SheetData.getCellValueAt","content":"SheetData.getCellValueAt \ngetCellValueAt \n Gets the string value of the cell at the given 1-based column- and rowIndex using a sharedStringTable.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#tryGetCellValueAt","title":"SheetData.tryGetCellValueAt","content":"SheetData.tryGetCellValueAt \ntryGetCellValueAt \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.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#insertValueAt","title":"SheetData.insertValueAt","content":"SheetData.insertValueAt \ninsertValueAt \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.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#setValueAt","title":"SheetData.setValueAt","content":"SheetData.setValueAt \nsetValueAt \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.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#tryRemoveValueAt","title":"SheetData.tryRemoveValueAt","content":"SheetData.tryRemoveValueAt \ntryRemoveValueAt \n Removes the value at the given row- and columnIndex from the sheet if it exists. Else returns None.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#removeValueAt","title":"SheetData.removeValueAt","content":"SheetData.removeValueAt \nremoveValueAt \n Removes the value at the given row- and columnIndex from the sheet.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#includeSharedStringValue","title":"SheetData.includeSharedStringValue","content":"SheetData.includeSharedStringValue \nincludeSharedStringValue \n Includes a value from sharedStringTable in the cells of the rows of the sheetData","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sheetdata.html#toSparseValueMatrix","title":"SheetData.toSparseValueMatrix","content":"SheetData.toSparseValueMatrix \ntoSparseValueMatrix \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.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html","title":"Spreadsheet","content":"Spreadsheet \n Functions for working the spreadsheet document. \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","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#fromFile","title":"Spreadsheet.fromFile","content":"Spreadsheet.fromFile \nfromFile \n Opens the spreadsheet located at the given path and initialized a FileStream.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#fromStream","title":"Spreadsheet.fromStream","content":"Spreadsheet.fromStream \nfromStream \n Opens the spreadsheet from the given FileStream.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#initEmpty","title":"Spreadsheet.initEmpty","content":"Spreadsheet.initEmpty \ninitEmpty \n Initializes a new empty spreadsheet at the given path.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#initEmptyOnStream","title":"Spreadsheet.initEmptyOnStream","content":"Spreadsheet.initEmptyOnStream \ninitEmptyOnStream \n Initializes a new empty spreadsheet in the given stream.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#getWorkbookPart","title":"Spreadsheet.getWorkbookPart","content":"Spreadsheet.getWorkbookPart \ngetWorkbookPart \n Gets the workbookPart of the spreadsheet.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#initWorkbookPart","title":"Spreadsheet.initWorkbookPart","content":"Spreadsheet.initWorkbookPart \ninitWorkbookPart \n Initialized a new workbookPart in the spreadsheetDocument but only if there is none.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#saveChanges","title":"Spreadsheet.saveChanges","content":"Spreadsheet.saveChanges \nsaveChanges \n Saves changes made to the spreadsheet.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#close","title":"Spreadsheet.close","content":"Spreadsheet.close \nclose \n Closes the FileStream to the spreadsheet.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#saveAs","title":"Spreadsheet.saveAs","content":"Spreadsheet.saveAs \nsaveAs \n Saves changes made to the spreadsheet to the given path.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#init","title":"Spreadsheet.init","content":"Spreadsheet.init \ninit \n Initializes a new spreadsheet with an empty sheet at the given path.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#initOnStream","title":"Spreadsheet.initOnStream","content":"Spreadsheet.initOnStream \ninitOnStream \n Initializes a new spreadsheet with an empty sheet in the given stream.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#initWithSst","title":"Spreadsheet.initWithSst","content":"Spreadsheet.initWithSst \ninitWithSst \n Initializes a new spreadsheet with an empty sheet and a sharedStringTable at the given path.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#initWithSstOnStream","title":"Spreadsheet.initWithSstOnStream","content":"Spreadsheet.initWithSstOnStream \ninitWithSstOnStream \n Initializes a new spreadsheet with an empty sheet and a sharedStringTable in the given stream.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#getSharedStringTable","title":"Spreadsheet.getSharedStringTable","content":"Spreadsheet.getSharedStringTable \ngetSharedStringTable \n Gets the sharedStringTable of a spreadsheet.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#tryGetSharedStringTable","title":"Spreadsheet.tryGetSharedStringTable","content":"Spreadsheet.tryGetSharedStringTable \ntryGetSharedStringTable \n Gets the sharedStringTable of the spreadsheet if it exists, else returns None.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#getOrInitSharedStringTablePart","title":"Spreadsheet.getOrInitSharedStringTablePart","content":"Spreadsheet.getOrInitSharedStringTablePart \ngetOrInitSharedStringTablePart \n Gets the sharedStringTablePart. If it does not exist, creates a new one.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#tryGetWorksheetPartBySheetName","title":"Spreadsheet.tryGetWorksheetPartBySheetName","content":"Spreadsheet.tryGetWorksheetPartBySheetName \ntryGetWorksheetPartBySheetName \n Returns the worksheetPart associated to the sheet with the given name.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#tryGetWorksheetPartBySheetIndex","title":"Spreadsheet.tryGetWorksheetPartBySheetIndex","content":"Spreadsheet.tryGetWorksheetPartBySheetIndex \ntryGetWorksheetPartBySheetIndex \n Returns the worksheetPart for the given 0-based sheetIndex of the given spreadsheetDocument. ","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#tryGetSheetBySheetName","title":"Spreadsheet.tryGetSheetBySheetName","content":"Spreadsheet.tryGetSheetBySheetName \ntryGetSheetBySheetName \n Returns the sheetData for the given 0-based sheetIndex of the given spreadsheetDocument if it exists. Else returns None.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#tryGetSheetBySheetIndex","title":"Spreadsheet.tryGetSheetBySheetIndex","content":"Spreadsheet.tryGetSheetBySheetIndex \ntryGetSheetBySheetIndex \n Returns the sheetData for the given 0-based sheetIndex of the given spreadsheetDocument. ","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#getRowsBySheetIndex","title":"Spreadsheet.getRowsBySheetIndex","content":"Spreadsheet.getRowsBySheetIndex \ngetRowsBySheetIndex \n Returns a sequence of rows containing the cells for the given 0-based sheetIndex of the given spreadsheetDocument. ","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#getCellsBySheet","title":"Spreadsheet.getCellsBySheet","content":"Spreadsheet.getCellsBySheet \ngetCellsBySheet \n Returns a 1D-sequence of Cells for the given Sheet of the given SpreadsheetDocument.","headings":[],"type":"apiDocs"},{"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.","headings":[],"type":"apiDocs"},{"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.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#mapRowOfSheet","title":"Spreadsheet.mapRowOfSheet","content":"Spreadsheet.mapRowOfSheet \nmapRowOfSheet \n\u003Cpre\u003E\u003C/pre\u003E","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#mapRowsOfSheet","title":"Spreadsheet.mapRowsOfSheet","content":"Spreadsheet.mapRowsOfSheet \nmapRowsOfSheet \n\u003Cpre\u003E\u003C/pre\u003E","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#appendRowValuesToSheet","title":"Spreadsheet.appendRowValuesToSheet","content":"Spreadsheet.appendRowValuesToSheet \nappendRowValuesToSheet \n\u003Cpre\u003E\u003C/pre\u003E","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#insertRowValuesIntoSheetAt","title":"Spreadsheet.insertRowValuesIntoSheetAt","content":"Spreadsheet.insertRowValuesIntoSheetAt \ninsertRowValuesIntoSheetAt \n\u003Cpre\u003E\u003C/pre\u003E","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#insertValueIntoSheetAt","title":"Spreadsheet.insertValueIntoSheetAt","content":"Spreadsheet.insertValueIntoSheetAt \ninsertValueIntoSheetAt \n\u003Cpre\u003E\u003C/pre\u003E","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#setValueInSheetAt","title":"Spreadsheet.setValueInSheetAt","content":"Spreadsheet.setValueInSheetAt \nsetValueInSheetAt \n\u003Cpre\u003E\u003C/pre\u003E","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-spreadsheet.html#deleteRowFromSheet","title":"Spreadsheet.deleteRowFromSheet","content":"Spreadsheet.deleteRowFromSheet \ndeleteRowFromSheet \n\u003Cpre\u003E\u003C/pre\u003E","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet.html#get","title":"Stylesheet.get","content":"Stylesheet.get \nget \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet.html#getOrInit","title":"Stylesheet.getOrInit","content":"Stylesheet.getOrInit \ngetOrInit \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet.html#tryGet","title":"Stylesheet.tryGet","content":"Stylesheet.tryGet \ntryGet \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-border.html","title":"Border","content":"Border \n \nBorder.getDefault \ngetDefault \nBorder.updateCount \nupdateCount \nBorder.initDefaultBorders \ninitDefaultBorders","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-border.html#getDefault","title":"Border.getDefault","content":"Border.getDefault \ngetDefault \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-border.html#updateCount","title":"Border.updateCount","content":"Border.updateCount \nupdateCount \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-border.html#initDefaultBorders","title":"Border.initDefaultBorders","content":"Border.initDefaultBorders \ninitDefaultBorders \n","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-cellformat.html#isDateTime","title":"CellFormat.isDateTime","content":"CellFormat.isDateTime \nisDateTime \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-cellformat.html#structurallyEquals","title":"CellFormat.structurallyEquals","content":"CellFormat.structurallyEquals \nstructurallyEquals \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-cellformat.html#updateCount","title":"CellFormat.updateCount","content":"CellFormat.updateCount \nupdateCount \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-cellformat.html#count","title":"CellFormat.count","content":"CellFormat.count \ncount \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-cellformat.html#tryGetIndex","title":"CellFormat.tryGetIndex","content":"CellFormat.tryGetIndex \ntryGetIndex \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-cellformat.html#getAt","title":"CellFormat.getAt","content":"CellFormat.getAt \ngetAt \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-cellformat.html#tryGetAt","title":"CellFormat.tryGetAt","content":"CellFormat.tryGetAt \ntryGetAt \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-cellformat.html#setAt","title":"CellFormat.setAt","content":"CellFormat.setAt \nsetAt \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-cellformat.html#append","title":"CellFormat.append","content":"CellFormat.append \nappend \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-cellformat.html#appendOrGetIndex","title":"CellFormat.appendOrGetIndex","content":"CellFormat.appendOrGetIndex \nappendOrGetIndex \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-cellformat.html#getDefault","title":"CellFormat.getDefault","content":"CellFormat.getDefault \ngetDefault \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-cellformat.html#getDefaultDate","title":"CellFormat.getDefaultDate","content":"CellFormat.getDefaultDate \ngetDefaultDate \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-cellformat.html#getDefaultDateTime","title":"CellFormat.getDefaultDateTime","content":"CellFormat.getDefaultDateTime \ngetDefaultDateTime \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-cellformat.html#initDefaultCellFormats","title":"CellFormat.initDefaultCellFormats","content":"CellFormat.initDefaultCellFormats \ninitDefaultCellFormats \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-fill.html","title":"Fill","content":"Fill \n \nFill.getDefault \ngetDefault \nFill.updateCount \nupdateCount \nFill.initDefaultFills \ninitDefaultFills","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-fill.html#getDefault","title":"Fill.getDefault","content":"Fill.getDefault \ngetDefault \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-fill.html#updateCount","title":"Fill.updateCount","content":"Fill.updateCount \nupdateCount \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-fill.html#initDefaultFills","title":"Fill.initDefaultFills","content":"Fill.initDefaultFills \ninitDefaultFills \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-font.html","title":"Font","content":"Font \n \nFont.getDefault \ngetDefault \nFont.updateCount \nupdateCount \nFont.initDefaultFonts \ninitDefaultFonts","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-font.html#getDefault","title":"Font.getDefault","content":"Font.getDefault \ngetDefault \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-font.html#updateCount","title":"Font.updateCount","content":"Font.updateCount \nupdateCount \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-font.html#initDefaultFonts","title":"Font.initDefaultFonts","content":"Font.initDefaultFonts \ninitDefaultFonts \n","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-numberingformat.html#get","title":"NumberingFormat.get","content":"NumberingFormat.get \nget \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-numberingformat.html#tryGet","title":"NumberingFormat.tryGet","content":"NumberingFormat.tryGet \ntryGet \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-numberingformat.html#getFormatCode","title":"NumberingFormat.getFormatCode","content":"NumberingFormat.getFormatCode \ngetFormatCode \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-stylesheet-numberingformat.html#isDateTime","title":"NumberingFormat.isDateTime","content":"NumberingFormat.isDateTime \nisDateTime \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table.html","title":"Table","content":"Table \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. \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","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table.html#getByNameBy","title":"Table.getByNameBy","content":"Table.getByNameBy \ngetByNameBy \n Returns a table for which the predicate applied to its name returns true.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table.html#tryGetByNameBy","title":"Table.tryGetByNameBy","content":"Table.tryGetByNameBy \ntryGetByNameBy \n If a table exists, for which the predicate applied to its name returns true, gets it. Else returns None.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table.html#tryGetFirst","title":"Table.tryGetFirst","content":"Table.tryGetFirst \ntryGetFirst \n If the worksheetPart contains tables, returns the first one. Else returns None.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table.html#list","title":"Table.list","content":"Table.list \nlist \n List all tables contained in the worksheet.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table.html#getName","title":"Table.getName","content":"Table.getName \ngetName \n Gets the name of a table.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table.html#setName","title":"Table.setName","content":"Table.setName \nsetName \n Sets the name of a table.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table.html#getDisplayName","title":"Table.getDisplayName","content":"Table.getDisplayName \ngetDisplayName \n Gets the diplayName of a table.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table.html#setDisplayName","title":"Table.setDisplayName","content":"Table.setDisplayName \nsetDisplayName \n Sets the displayName of the table.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table.html#getArea","title":"Table.getArea","content":"Table.getArea \ngetArea \n Gets the area of the table.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table.html#setArea","title":"Table.setArea","content":"Table.setArea \nsetArea \n Sets the area of the table.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table.html#create","title":"Table.create","content":"Table.create \ncreate \n Creates a table from a name a area and tableColumns.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table.html#addTable","title":"Table.addTable","content":"Table.addTable \naddTable \n Adds a table to the worksheetPart.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table.html#tryCreateWithExistingHeaders","title":"Table.tryCreateWithExistingHeaders","content":"Table.tryCreateWithExistingHeaders \ntryCreateWithExistingHeaders \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.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table.html#getColumnHeaders","title":"Table.getColumnHeaders","content":"Table.getColumnHeaders \ngetColumnHeaders \n Returns the headers of the columns.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table.html#tryGetTableColumnBy","title":"Table.tryGetTableColumnBy","content":"Table.tryGetTableColumnBy \ntryGetTableColumnBy \n Returns the tableColumn for which the predicate returns true if it exists. Else returns None.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table.html#tryGetTableColumnByName","title":"Table.tryGetTableColumnByName","content":"Table.tryGetTableColumnByName \ntryGetTableColumnByName \n If a tableColumn with the given name exists in the table, returns it. Else returns None.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table.html#tryGetColumnValuesByColumnHeader","title":"Table.tryGetColumnValuesByColumnHeader","content":"Table.tryGetColumnValuesByColumnHeader \ntryGetColumnValuesByColumnHeader \n If a column with the given header exists in the table, returns its values. Else returns None.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table.html#tryGetIndexedColumnValuesByColumnHeader","title":"Table.tryGetIndexedColumnValuesByColumnHeader","content":"Table.tryGetIndexedColumnValuesByColumnHeader \ntryGetIndexedColumnValuesByColumnHeader \n If a column with the given header exists in the table, returns its indexed values. Else returns None.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table.html#tryGetKeyValuesByColumnHeaders","title":"Table.tryGetKeyValuesByColumnHeaders","content":"Table.tryGetKeyValuesByColumnHeaders \ntryGetKeyValuesByColumnHeaders \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.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table.html#toSparseValueMatrix","title":"Table.toSparseValueMatrix","content":"Table.toSparseValueMatrix \ntoSparseValueMatrix \n Reads a complete table. Values are stored sparsely in a dictionary, with the key being a row index and column header tuple.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-area.html","title":"Area","content":"Area \n The areas marks the area in which the table lies. \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","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-area.html#ofBoundaries","title":"Area.ofBoundaries","content":"Area.ofBoundaries \nofBoundaries \n Given A1-based top left start and bottom right end indices, returns a \u0022A1:A1\u0022-style area-","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-area.html#toBoundaries","title":"Area.toBoundaries","content":"Area.toBoundaries \ntoBoundaries \n Given a \u0022A1:A1\u0022-style area, returns A1-based cell start and end cellReferences.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-area.html#rightBoundary","title":"Area.rightBoundary","content":"Area.rightBoundary \nrightBoundary \n Gets the right boundary of the area.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-area.html#leftBoundary","title":"Area.leftBoundary","content":"Area.leftBoundary \nleftBoundary \n Gets the left boundary of the area.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-area.html#upperBoundary","title":"Area.upperBoundary","content":"Area.upperBoundary \nupperBoundary \n Gets the Upper boundary of the area.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-area.html#lowerBoundary","title":"Area.lowerBoundary","content":"Area.lowerBoundary \nlowerBoundary \n Gets the lower boundary of the area.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-area.html#moveHorizontal","title":"Area.moveHorizontal","content":"Area.moveHorizontal \nmoveHorizontal \n Moves both start and end of the area by the given amount (positive amount moves area to right and vice versa).","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-area.html#moveVertical","title":"Area.moveVertical","content":"Area.moveVertical \nmoveVertical \n Moves both start and end of the area by the given amount (positive amount moves area to right and vice versa).","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-area.html#extendRight","title":"Area.extendRight","content":"Area.extendRight \nextendRight \n Extends the right boundary of the area by the given amount (positive amount increases area to right and vice versa).","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-area.html#extendLeft","title":"Area.extendLeft","content":"Area.extendLeft \nextendLeft \n Extends the left boundary of the area by the given amount (positive amount decreases the area to left and vice versa).","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-area.html#referenceExceedsAreaRight","title":"Area.referenceExceedsAreaRight","content":"Area.referenceExceedsAreaRight \nreferenceExceedsAreaRight \n Returns true if the column index of the reference exceeds the right boundary of the area.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-area.html#referenceExceedsAreaLeft","title":"Area.referenceExceedsAreaLeft","content":"Area.referenceExceedsAreaLeft \nreferenceExceedsAreaLeft \n Returns true if the column index of the reference exceeds the left boundary of the area.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-area.html#referenceExceedsAreaAbove","title":"Area.referenceExceedsAreaAbove","content":"Area.referenceExceedsAreaAbove \nreferenceExceedsAreaAbove \n Returns true if the column index of the reference exceeds the upper boundary of the area.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-area.html#referenceExceedsAreaBelow","title":"Area.referenceExceedsAreaBelow","content":"Area.referenceExceedsAreaBelow \nreferenceExceedsAreaBelow \n Returns true if the column index of the reference exceeds the lower boundary of the area.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-area.html#referenceExceedsArea","title":"Area.referenceExceedsArea","content":"Area.referenceExceedsArea \nreferenceExceedsArea \n Returns true if the reference does not lie in the boundary of the area.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-area.html#isCorrect","title":"Area.isCorrect","content":"Area.isCorrect \nisCorrect \n Returns true if the A1:A1-style area is of correct format.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-tablecolumn.html","title":"TableColumn","content":"TableColumn \n Functions for working with a single tableColumn of a table. \nTableColumn.getName \ngetName \nTableColumn.getId \ngetId \nTableColumn.create \ncreate","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-tablecolumn.html#getName","title":"TableColumn.getName","content":"TableColumn.getName \ngetName \n Gets Name of a tableColumn.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-tablecolumn.html#getId","title":"TableColumn.getId","content":"TableColumn.getId \ngetId \n Gets 1-based column index of tableColumn.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-tablecolumn.html#create","title":"TableColumn.create","content":"TableColumn.create \ncreate \n Creates a tableColumn of the given name and id.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-tablecolumns.html","title":"TableColumns","content":"TableColumns \n Functions for working with the columns of a table. \nTableColumns.get \nget \nTableColumns.getTableColumns \ngetTableColumns \nTableColumns.count \ncount \nTableColumns.create \ncreate","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-tablecolumns.html#get","title":"TableColumns.get","content":"TableColumns.get \nget \n Gets the tableColumns from a table.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-tablecolumns.html#getTableColumns","title":"TableColumns.getTableColumns","content":"TableColumns.getTableColumns \ngetTableColumns \n Gets the columns from a tableColumns element.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-tablecolumns.html#count","title":"TableColumns.count","content":"TableColumns.count \ncount \n Retruns the number of columns in a tableColumns element.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-table-tablecolumns.html#create","title":"TableColumns.create","content":"TableColumns.create \ncreate \n Creates a tableColumns sequence.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbook.html","title":"Workbook","content":"Workbook \n Functions for manipulating Workbooks. (Unmanaged: changing the sheets does not alter the associated worksheets which store the data) \nWorkbook.empty \nempty \nWorkbook.get \nget \nWorkbook.set \nset \nWorkbook.init \ninit \nWorkbook.getOrInit \ngetOrInit","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbook.html#empty","title":"Workbook.empty","content":"Workbook.empty \nempty \n Creates an empty Workbook.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbook.html#get","title":"Workbook.get","content":"Workbook.get \nget \n Gets the Workbook of the WorkbookPart.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbook.html#set","title":"Workbook.set","content":"Workbook.set \nset \n Sets the Workbook of the WorkbookPart.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbook.html#init","title":"Workbook.init","content":"Workbook.init \ninit \n Sets an empty Workbook in the given WorkbookPart.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbook.html#getOrInit","title":"Workbook.getOrInit","content":"Workbook.getOrInit \ngetOrInit \n Returns the Workbookpart associated with the existing or a newly created Workbook.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbookpart.html","title":"WorkbookPart","content":"WorkbookPart \n Functions for working with WorkbookParts. \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","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbookpart.html#addWorksheetPart","title":"WorkbookPart.addWorksheetPart","content":"WorkbookPart.addWorksheetPart \naddWorksheetPart \n Add a WorksheetPart to the WorkbookPart.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbookpart.html#initWorksheetPart","title":"WorkbookPart.initWorksheetPart","content":"WorkbookPart.initWorksheetPart \ninitWorksheetPart \n Add an empty WorksheetPart to the WorkbookPart.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbookpart.html#getWorkSheetParts","title":"WorkbookPart.getWorkSheetParts","content":"WorkbookPart.getWorkSheetParts \ngetWorkSheetParts \n Get the WorksheetParts of the WorkbookPart.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbookpart.html#containsWorkSheetParts","title":"WorkbookPart.containsWorkSheetParts","content":"WorkbookPart.containsWorkSheetParts \ncontainsWorkSheetParts \n Returns true if the WorkbookPart contains at least one WorksheetPart.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbookpart.html#getWorksheetPartById","title":"WorkbookPart.getWorksheetPartById","content":"WorkbookPart.getWorksheetPartById \ngetWorksheetPartById \n Gets the WorksheetPart of the WorkbookPart with the given ID.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbookpart.html#tryGetWorksheetPartById","title":"WorkbookPart.tryGetWorksheetPartById","content":"WorkbookPart.tryGetWorksheetPartById \ntryGetWorksheetPartById \n If the WorkbookPart contains the WorksheetPart with the given ID, returns it. Else returns None.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbookpart.html#getWorksheetPartID","title":"WorkbookPart.getWorksheetPartID","content":"WorkbookPart.getWorksheetPartID \ngetWorksheetPartID \n Gets the ID of the WorksheetPart of the WorkbookPart.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbookpart.html#getSharedStringTablePart","title":"WorkbookPart.getSharedStringTablePart","content":"WorkbookPart.getSharedStringTablePart \ngetSharedStringTablePart \n Gets the SharedStringTablePart of a WorkbookPart.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbookpart.html#initSharedStringTablePart","title":"WorkbookPart.initSharedStringTablePart","content":"WorkbookPart.initSharedStringTablePart \ninitSharedStringTablePart \n Sets an empty SharedStringTablePart in the given WorkbookPart.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbookpart.html#containsSharedStringTablePart","title":"WorkbookPart.containsSharedStringTablePart","content":"WorkbookPart.containsSharedStringTablePart \ncontainsSharedStringTablePart \n Returns true if the WorkbookPart contains a SharedStringTablePart.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbookpart.html#getOrInitSharedStringTablePart","title":"WorkbookPart.getOrInitSharedStringTablePart","content":"WorkbookPart.getOrInitSharedStringTablePart \ngetOrInitSharedStringTablePart \n Returns the existing or a newly created SharedStringTablePart associated with the WorkbookPart.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbookpart.html#getSharedStringTable","title":"WorkbookPart.getSharedStringTable","content":"WorkbookPart.getSharedStringTable \ngetSharedStringTable \n Returns the SharedStringTable of a WorkbookPart.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbookpart.html#getDataOfFirstSheet","title":"WorkbookPart.getDataOfFirstSheet","content":"WorkbookPart.getDataOfFirstSheet \ngetDataOfFirstSheet \n Returns the SheetData of the first sheet of the given WorkbookPart.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbookpart.html#getOrInitWorksheetPartByName","title":"WorkbookPart.getOrInitWorksheetPartByName","content":"WorkbookPart.getOrInitWorksheetPartByName \ngetOrInitWorksheetPartByName \n Appends a worksheet to the SpreadsheetDocument.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbookpart.html#appendWorksheet","title":"WorkbookPart.appendWorksheet","content":"WorkbookPart.appendWorksheet \nappendWorksheet \n Appends a worksheet to the SpreadsheetDocument.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbookpart.html#appendSheet","title":"WorkbookPart.appendSheet","content":"WorkbookPart.appendSheet \nappendSheet \n Appends a new sheet with the given SheetData to the SpreadsheetDocument.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-workbookpart.html#replaceSheetDataByName","title":"WorkbookPart.replaceSheetDataByName","content":"WorkbookPart.replaceSheetDataByName \nreplaceSheetDataByName \n Replaces the SheetData of the Sheet with the given sheetname.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet.html","title":"Worksheet","content":"Worksheet \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) \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","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet.html#empty","title":"Worksheet.empty","content":"Worksheet.empty \nempty \n Empty Worksheet","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet.html#addSheetData","title":"Worksheet.addSheetData","content":"Worksheet.addSheetData \naddSheetData \n Associates a SheetData with the Worksheet.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet.html#hasSheetData","title":"Worksheet.hasSheetData","content":"Worksheet.hasSheetData \nhasSheetData \n Returns true, if the Worksheet contains SheetData.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet.html#ofSheetData","title":"Worksheet.ofSheetData","content":"Worksheet.ofSheetData \nofSheetData \n Creates a Worksheet containing the given SheetData.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet.html#getSheetData","title":"Worksheet.getSheetData","content":"Worksheet.getSheetData \ngetSheetData \n Returns the sheetdata associated with the Worksheet.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet.html#setSheetData","title":"Worksheet.setSheetData","content":"Worksheet.setSheetData \nsetSheetData \n Sets the SheetData of a Worksheet.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet.html#get","title":"Worksheet.get","content":"Worksheet.get \nget \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet.html#setWorksheet","title":"Worksheet.setWorksheet","content":"Worksheet.setWorksheet \nsetWorksheet \n Sets the given Worksheet with the WorksheetPart.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet.html#init","title":"Worksheet.init","content":"Worksheet.init \ninit \nAssociates an empty Worksheet with the WorksheetPart.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet.html#getOrInit","title":"Worksheet.getOrInit","content":"Worksheet.getOrInit \ngetOrInit \n Returns the existing or a newly created Worksheet associated with the WorksheetPart.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet-comments.html","title":"Comments","content":"Comments \n Functions for working with Comments. \nComments.get \nget \nComments.getCommentList \ngetCommentList \nComments.getAuthors \ngetAuthors \nComments.getCommentAndNoteTexts \ngetCommentAndNoteTexts \nComments.getCommentsAuthorsTextsRefs \ngetCommentsAuthorsTextsRefs \nComments.getNotesAuthorsTextsRefs \ngetNotesAuthorsTextsRefs","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet-comments.html#get","title":"Comments.get","content":"Comments.get \nget \n Returns the comments of the WorksheetCommentsPart.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet-comments.html#getCommentList","title":"Comments.getCommentList","content":"Comments.getCommentList \ngetCommentList \n Returns the CommentList of the given Comments.","headings":[],"type":"apiDocs"},{"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 class=\u0022fssnip highlighted\u0022\u003E\u003Ccode lang=\u0022fsharp\u0022\u003E\u003Cspan class=\u0022id\u0022\u003Etc\u003C/span\u003E\u003Cspan class=\u0022o\u0022\u003E=\u003C/span\u003E\u003Cspan class=\u0022pn\u0022\u003E{\u003C/span\u003E\u003Cspan class=\u0022o\u0022\u003E..\u003C/span\u003E\u003Cspan class=\u0022pn\u0022\u003E.\u003C/span\u003E\u003Cspan class=\u0022pn\u0022\u003E}\u003C/span\u003E\n\u003C/code\u003E\u003C/pre\u003E\n\n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet-comments.html#getCommentAndNoteTexts","title":"Comments.getCommentAndNoteTexts","content":"Comments.getCommentAndNoteTexts \ngetCommentAndNoteTexts \n Returns all Comments and Notes as strings of a CommentList.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet-comments.html#getCommentsAuthorsTextsRefs","title":"Comments.getCommentsAuthorsTextsRefs","content":"Comments.getCommentsAuthorsTextsRefs \ngetCommentsAuthorsTextsRefs \n Returns a triple of Comments consisting of the author, the comment text written, and the cell reference (A1-style).","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet-comments.html#getNotesAuthorsTextsRefs","title":"Comments.getNotesAuthorsTextsRefs","content":"Comments.getNotesAuthorsTextsRefs \ngetNotesAuthorsTextsRefs \n Returns a triple of Notes consisting of the author, the note text written, and the cell reference (A1-style).","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet-worksheetcommentspart.html","title":"WorksheetCommentsPart","content":"WorksheetCommentsPart \n Functions for extracting / working with WorksheetCommentsParts. \nWorksheetCommentsPart.get \nget \nWorksheetCommentsPart.getComments \ngetComments","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet-worksheetcommentspart.html#get","title":"WorksheetCommentsPart.get","content":"WorksheetCommentsPart.get \nget \n Returns the WorksheetCommentsPart associated with a WorksheetPart.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet-worksheetcommentspart.html#getComments","title":"WorksheetCommentsPart.getComments","content":"WorksheetCommentsPart.getComments \ngetComments \n Returns the comments of the WorksheetCommentsPart.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet-worksheetpart.html","title":"WorksheetPart","content":"WorksheetPart \n Functions for extracting / working with WorksheetParts. \nWorksheetPart.getByID \ngetByID \nWorksheetPart.getSheetData \ngetSheetData \nWorksheetPart.getWorksheetCommentsPart \ngetWorksheetCommentsPart \nWorksheetPart.getTables \ngetTables","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet-worksheetpart.html#getByID","title":"WorksheetPart.getByID","content":"WorksheetPart.getByID \ngetByID \n Returns the WorksheetPart matching the given sheetID.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet-worksheetpart.html#getSheetData","title":"WorksheetPart.getSheetData","content":"WorksheetPart.getSheetData \ngetSheetData \n Returns the SheetData associated with the WorksheetPart.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet-worksheetpart.html#getWorksheetCommentsPart","title":"WorksheetPart.getWorksheetCommentsPart","content":"WorksheetPart.getWorksheetCommentsPart \ngetWorksheetCommentsPart \n Returns the WorksheetCommentsPart associated with a WorksheetPart.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-worksheet-worksheetpart.html#getTables","title":"WorksheetPart.getTables","content":"WorksheetPart.getTables \ngetTables \nReturns the Tables associated with a WorksheetPart","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader.html#bool","title":"ZipArchiveReader.bool","content":"ZipArchiveReader.bool \nbool \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader.html#dateTimeFormats","title":"ZipArchiveReader.dateTimeFormats","content":"ZipArchiveReader.dateTimeFormats \ndateTimeFormats \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader.html#customFormats","title":"ZipArchiveReader.customFormats","content":"ZipArchiveReader.customFormats \ncustomFormats \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader.html#parseRelationsships","title":"ZipArchiveReader.parseRelationsships","content":"ZipArchiveReader.parseRelationsships \nparseRelationsships \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader.html#getWbRelationships","title":"ZipArchiveReader.getWbRelationships","content":"ZipArchiveReader.getWbRelationships \ngetWbRelationships \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader.html#getWsRelationships","title":"ZipArchiveReader.getWsRelationships","content":"ZipArchiveReader.getWsRelationships \ngetWsRelationships \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader.html#getSharedStrings","title":"ZipArchiveReader.getSharedStrings","content":"ZipArchiveReader.getSharedStrings \ngetSharedStrings \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader.html#getStyles","title":"ZipArchiveReader.getStyles","content":"ZipArchiveReader.getStyles \ngetStyles \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader.html#parseTable","title":"ZipArchiveReader.parseTable","content":"ZipArchiveReader.parseTable \nparseTable \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader.html#getTables","title":"ZipArchiveReader.getTables","content":"ZipArchiveReader.getTables \ngetTables \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader.html#parseCell","title":"ZipArchiveReader.parseCell","content":"ZipArchiveReader.parseCell \nparseCell \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader.html#parseWorksheet","title":"ZipArchiveReader.parseWorksheet","content":"ZipArchiveReader.parseWorksheet \nparseWorksheet \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader.html#parseWorkbook","title":"ZipArchiveReader.parseWorkbook","content":"ZipArchiveReader.parseWorkbook \nparseWorkbook \n","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-dtype.html#boolean","title":"DType.boolean","content":"DType.boolean \nboolean \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-dtype.html#number","title":"DType.number","content":"DType.number \nnumber \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-dtype.html#error","title":"DType.error","content":"DType.error \nerror \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-dtype.html#sharedString","title":"DType.sharedString","content":"DType.sharedString \nsharedString \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-dtype.html#string","title":"DType.string","content":"DType.string \nstring \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-dtype.html#inlineString","title":"DType.inlineString","content":"DType.inlineString \ninlineString \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-dtype.html#date","title":"DType.date","content":"DType.date \ndate \n","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-fsworkbook.html#fromZipArchive","title":"FsWorkbook.fromZipArchive","content":"FsWorkbook.fromZipArchive \nfromZipArchive \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-fsworkbook.html#fromXlsxStream","title":"FsWorkbook.fromXlsxStream","content":"FsWorkbook.fromXlsxStream \nfromXlsxStream \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-fsworkbook.html#fromXlsxBytes","title":"FsWorkbook.fromXlsxBytes","content":"FsWorkbook.fromXlsxBytes \nfromXlsxBytes \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-fsworkbook.html#fromXlsxFile","title":"FsWorkbook.fromXlsxFile","content":"FsWorkbook.fromXlsxFile \nfromXlsxFile \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-xmlreader.html","title":"XmlReader","content":"XmlReader \n \nXmlReader.isElemWithName \nisElemWithName","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-xmlreader.html#isElemWithName","title":"XmlReader.isElemWithName","content":"XmlReader.isElemWithName \nisElemWithName \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-cellformat.html","title":"CellFormat","content":"CellFormat \n \nCellFormat.isDateTime \nisDateTime \nCellFormat.NumberFormatId \nNumberFormatId \nCellFormat.ApllyNumberFormat \nApllyNumberFormat","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-cellformat.html#isDateTime","title":"CellFormat.isDateTime","content":"CellFormat.isDateTime \nisDateTime \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-cellformat.html#NumberFormatId","title":"CellFormat.NumberFormatId","content":"CellFormat.NumberFormatId \nNumberFormatId \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-cellformat.html#ApllyNumberFormat","title":"CellFormat.ApllyNumberFormat","content":"CellFormat.ApllyNumberFormat \nApllyNumberFormat \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-numberformat.html","title":"NumberFormat","content":"NumberFormat \n \nNumberFormat.isDateTime \nisDateTime \nNumberFormat.Id \nId \nNumberFormat.FormatCode \nFormatCode","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-numberformat.html#isDateTime","title":"NumberFormat.isDateTime","content":"NumberFormat.isDateTime \nisDateTime \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-numberformat.html#Id","title":"NumberFormat.Id","content":"NumberFormat.Id \nId \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-numberformat.html#FormatCode","title":"NumberFormat.FormatCode","content":"NumberFormat.FormatCode \nFormatCode \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-relationship.html","title":"Relationship","content":"Relationship \n \nRelationship.Id \nId \nRelationship.Type \nType \nRelationship.Target \nTarget","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-relationship.html#Id","title":"Relationship.Id","content":"Relationship.Id \nId \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-relationship.html#Type","title":"Relationship.Type","content":"Relationship.Type \nType \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-relationship.html#Target","title":"Relationship.Target","content":"Relationship.Target \nTarget \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-relationships.html","title":"Relationships","content":"Relationships \n \nRelationships.Count \nCount \nRelationships.Keys \nKeys \nRelationships.Values \nValues \nRelationships.Item \nItem \nRelationships.IsEmpty \nIsEmpty","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-relationships.html#Count","title":"Relationships.Count","content":"Relationships.Count \nCount \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-relationships.html#Keys","title":"Relationships.Keys","content":"Relationships.Keys \nKeys \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-relationships.html#Values","title":"Relationships.Values","content":"Relationships.Values \nValues \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-relationships.html#Item","title":"Relationships.Item","content":"Relationships.Item \nItem \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-relationships.html#IsEmpty","title":"Relationships.IsEmpty","content":"Relationships.IsEmpty \nIsEmpty \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-sharedstrings.html","title":"SharedStrings","content":"SharedStrings \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-styles.html","title":"Styles","content":"Styles \n \nStyles.NumberFormats \nNumberFormats \nStyles.CellFormats \nCellFormats","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-styles.html#NumberFormats","title":"Styles.NumberFormats","content":"Styles.NumberFormats \nNumberFormats \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-styles.html#CellFormats","title":"Styles.CellFormats","content":"Styles.CellFormats \nCellFormats \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-workbook.html","title":"WorkBook","content":"WorkBook \n \nWorkBook.Comment \nComment \nWorkBook.Entries \nEntries \nWorkBook.Mode \nMode","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-workbook.html#Comment","title":"WorkBook.Comment","content":"WorkBook.Comment \nComment \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-workbook.html#Entries","title":"WorkBook.Entries","content":"WorkBook.Entries \nEntries \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-ziparchivereader-workbook.html#Mode","title":"WorkBook.Mode","content":"WorkBook.Mode \nMode \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-sst.html","title":"SST","content":"SST \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-writer.html","title":"Writer","content":"Writer \n \nWriter.toFile \ntoFile \nWriter.toRowsJsonFile \ntoRowsJsonFile \nWriter.toRowsJsonString \ntoRowsJsonString \nWriter.toXlsxBytes \ntoXlsxBytes \nWriter.toXlsxFile \ntoXlsxFile \nWriter.toXlsxStream \ntoXlsxStream","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-writer.html#toFile","title":"Writer.toFile","content":"Writer.toFile \ntoFile \n Writes an FsWorkbook into a binary file at the given path.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-writer.html#toRowsJsonFile","title":"Writer.toRowsJsonFile","content":"Writer.toRowsJsonFile \ntoRowsJsonFile \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-writer.html#toRowsJsonString","title":"Writer.toRowsJsonString","content":"Writer.toRowsJsonString \ntoRowsJsonString \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-writer.html#toXlsxBytes","title":"Writer.toXlsxBytes","content":"Writer.toXlsxBytes \ntoXlsxBytes \n Returns an FsWorkbook in the form of a byte array.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-writer.html#toXlsxFile","title":"Writer.toXlsxFile","content":"Writer.toXlsxFile \ntoXlsxFile \n Writes an FsWorkbook into a binary file at the given path.","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-net-writer.html#toXlsxStream","title":"Writer.toXlsxStream","content":"Writer.toXlsxStream \ntoXlsxStream \n Writes an FsWorkbook into a given MemoryStream.","headings":[],"type":"apiDocs"},{"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.fromRowsJsonString \nfromRowsJsonString \nFsSpreadsheet.toRowsJsonString \ntoRowsJsonString \nFsSpreadsheet.ToRowsJsonString \nToRowsJsonString \nFsSpreadsheet.fromColumnsJsonString \nfromColumnsJsonString \nFsSpreadsheet.toColumnsJsonString \ntoColumnsJsonString \nFsSpreadsheet.ToColumnsJsonString \nToColumnsJsonString","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-fsspreadsheet.html#fromXlsxFile","title":"FsSpreadsheet.fromXlsxFile","content":"FsSpreadsheet.fromXlsxFile \nfromXlsxFile \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-fsspreadsheet.html#fromXlsxStream","title":"FsSpreadsheet.fromXlsxStream","content":"FsSpreadsheet.fromXlsxStream \nfromXlsxStream \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-fsspreadsheet.html#fromXlsxBytes","title":"FsSpreadsheet.fromXlsxBytes","content":"FsSpreadsheet.fromXlsxBytes \nfromXlsxBytes \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-fsspreadsheet.html#toXlsxFile","title":"FsSpreadsheet.toXlsxFile","content":"FsSpreadsheet.toXlsxFile \ntoXlsxFile \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-fsspreadsheet.html#toXlsxBytes","title":"FsSpreadsheet.toXlsxBytes","content":"FsSpreadsheet.toXlsxBytes \ntoXlsxBytes \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-fsspreadsheet.html#ToXlsxFile","title":"FsSpreadsheet.ToXlsxFile","content":"FsSpreadsheet.ToXlsxFile \nToXlsxFile \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-fsspreadsheet.html#ToXlsxBytes","title":"FsSpreadsheet.ToXlsxBytes","content":"FsSpreadsheet.ToXlsxBytes \nToXlsxBytes \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-fsspreadsheet.html#fromRowsJsonString","title":"FsSpreadsheet.fromRowsJsonString","content":"FsSpreadsheet.fromRowsJsonString \nfromRowsJsonString \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-fsspreadsheet.html#toRowsJsonString","title":"FsSpreadsheet.toRowsJsonString","content":"FsSpreadsheet.toRowsJsonString \ntoRowsJsonString \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-fsspreadsheet.html#ToRowsJsonString","title":"FsSpreadsheet.ToRowsJsonString","content":"FsSpreadsheet.ToRowsJsonString \nToRowsJsonString \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-fsspreadsheet.html#fromColumnsJsonString","title":"FsSpreadsheet.fromColumnsJsonString","content":"FsSpreadsheet.fromColumnsJsonString \nfromColumnsJsonString \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-fsspreadsheet.html#toColumnsJsonString","title":"FsSpreadsheet.toColumnsJsonString","content":"FsSpreadsheet.toColumnsJsonString \ntoColumnsJsonString \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-fsspreadsheet.html#ToColumnsJsonString","title":"FsSpreadsheet.ToColumnsJsonString","content":"FsSpreadsheet.ToColumnsJsonString \nToColumnsJsonString \n","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pycell.html#DateTime","title":"PyCell.DateTime","content":"PyCell.DateTime \nDateTime \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pycell.html#toUniversalTimePy","title":"PyCell.toUniversalTimePy","content":"PyCell.toUniversalTimePy \ntoUniversalTimePy \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pycell.html#fromFsCell","title":"PyCell.fromFsCell","content":"PyCell.fromFsCell \nfromFsCell \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pycell.html#toFsCell","title":"PyCell.toFsCell","content":"PyCell.toFsCell \ntoFsCell \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pycell-datetimestatic.html","title":"DateTimeStatic","content":"DateTimeStatic \n \nDateTimeStatic.fromTimeStamp \nfromTimeStamp","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pycell-datetimestatic.html#fromTimeStamp","title":"DateTimeStatic.fromTimeStamp","content":"DateTimeStatic.fromTimeStamp \nfromTimeStamp \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pycell-datetime.html","title":"datetime","content":"datetime \n \ndatetime.decoy \ndecoy","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pycell-datetime.html#decoy","title":"datetime.decoy","content":"datetime.decoy \ndecoy \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pycelltype.html","title":"PyCellType","content":"PyCellType \n \nPyCellType.fromDataTyoe \nfromDataTyoe \nPyCellType.toDataType \ntoDataType","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pycelltype.html#fromDataTyoe","title":"PyCellType.fromDataTyoe","content":"PyCellType.fromDataTyoe \nfromDataTyoe \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pycelltype.html#toDataType","title":"PyCellType.toDataType","content":"PyCellType.toDataType \ntoDataType \n","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pytable.html#TableStyleInfo","title":"PyTable.TableStyleInfo","content":"PyTable.TableStyleInfo \nTableStyleInfo \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pytable.html#defaultTableStyle","title":"PyTable.defaultTableStyle","content":"PyTable.defaultTableStyle \ndefaultTableStyle \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pytable.html#fromFsTable","title":"PyTable.fromFsTable","content":"PyTable.fromFsTable \nfromFsTable \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pytable.html#toFsTable","title":"PyTable.toFsTable","content":"PyTable.toFsTable \ntoFsTable \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pytable-tablestylestatic.html","title":"TableStyleStatic","content":"TableStyleStatic \n \nTableStyleStatic.create \ncreate","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pytable-tablestylestatic.html#create","title":"TableStyleStatic.create","content":"TableStyleStatic.create \ncreate \n","headings":[],"type":"apiDocs"},{"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","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pytable-tablestyle.html#name","title":"tablestyle.name","content":"tablestyle.name \nname \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pytable-tablestyle.html#showColumnStripes","title":"tablestyle.showColumnStripes","content":"tablestyle.showColumnStripes \nshowColumnStripes \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pytable-tablestyle.html#showFirstColumn","title":"tablestyle.showFirstColumn","content":"tablestyle.showFirstColumn \nshowFirstColumn \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pytable-tablestyle.html#showLastColumn","title":"tablestyle.showLastColumn","content":"tablestyle.showLastColumn \nshowLastColumn \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pytable-tablestyle.html#showRowStripes","title":"tablestyle.showRowStripes","content":"tablestyle.showRowStripes \nshowRowStripes \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pyworkbook.html","title":"PyWorkbook","content":"PyWorkbook \n \nPyWorkbook.fromFsWorkbook \nfromFsWorkbook \nPyWorkbook.toFsWorkbook \ntoFsWorkbook","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pyworkbook.html#fromFsWorkbook","title":"PyWorkbook.fromFsWorkbook","content":"PyWorkbook.fromFsWorkbook \nfromFsWorkbook \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pyworkbook.html#toFsWorkbook","title":"PyWorkbook.toFsWorkbook","content":"PyWorkbook.toFsWorkbook \ntoFsWorkbook \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pyworksheet.html","title":"PyWorksheet","content":"PyWorksheet \n \nPyWorksheet.fromFsWorksheet \nfromFsWorksheet \nPyWorksheet.toFsWorksheet \ntoFsWorksheet","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pyworksheet.html#fromFsWorksheet","title":"PyWorksheet.fromFsWorksheet","content":"PyWorksheet.fromFsWorksheet \nfromFsWorksheet \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-pyworksheet.html#toFsWorksheet","title":"PyWorksheet.toFsWorksheet","content":"PyWorksheet.toFsWorksheet \ntoFsWorksheet \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-json.html","title":"Json","content":"Json \n This does currently not correctly work if you want to use this from js\n https://github.com/fable-compiler/Fable/issues/3498 \nJson.fromColumnsJsonString \nfromColumnsJsonString \nJson.fromRowsJsonString \nfromRowsJsonString \nJson.toColumnsJsonString \ntoColumnsJsonString \nJson.toRowsJsonString \ntoRowsJsonString \nJson.tryFromColumnsJsonString \ntryFromColumnsJsonString \nJson.tryFromRowsJsonString \ntryFromRowsJsonString","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-json.html#fromColumnsJsonString","title":"Json.fromColumnsJsonString","content":"Json.fromColumnsJsonString \nfromColumnsJsonString \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-json.html#fromRowsJsonString","title":"Json.fromRowsJsonString","content":"Json.fromRowsJsonString \nfromRowsJsonString \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-json.html#toColumnsJsonString","title":"Json.toColumnsJsonString","content":"Json.toColumnsJsonString \ntoColumnsJsonString \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-json.html#toRowsJsonString","title":"Json.toRowsJsonString","content":"Json.toRowsJsonString \ntoRowsJsonString \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-json.html#tryFromColumnsJsonString","title":"Json.tryFromColumnsJsonString","content":"Json.tryFromColumnsJsonString \ntryFromColumnsJsonString \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-json.html#tryFromRowsJsonString","title":"Json.tryFromRowsJsonString","content":"Json.tryFromRowsJsonString \ntryFromRowsJsonString \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-xlsx.html","title":"Xlsx","content":"Xlsx \n This does currently not correctly work if you want to use this from js\n https://github.com/fable-compiler/Fable/issues/3498 \nXlsx.fromXlsxBytes \nfromXlsxBytes \nXlsx.fromXlsxFile \nfromXlsxFile \nXlsx.fromXlsxStream \nfromXlsxStream \nXlsx.toXlsxBytes \ntoXlsxBytes \nXlsx.toXlsxFile \ntoXlsxFile","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-xlsx.html#fromXlsxBytes","title":"Xlsx.fromXlsxBytes","content":"Xlsx.fromXlsxBytes \nfromXlsxBytes \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-xlsx.html#fromXlsxFile","title":"Xlsx.fromXlsxFile","content":"Xlsx.fromXlsxFile \nfromXlsxFile \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-xlsx.html#fromXlsxStream","title":"Xlsx.fromXlsxStream","content":"Xlsx.fromXlsxStream \nfromXlsxStream \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-xlsx.html#toXlsxBytes","title":"Xlsx.toXlsxBytes","content":"Xlsx.toXlsxBytes \ntoXlsxBytes \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/fsspreadsheet-py-xlsx.html#toXlsxFile","title":"Xlsx.toXlsxFile","content":"Xlsx.toXlsxFile \ntoXlsxFile \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/global-defaulttestobject.html","title":"DefaultTestObject","content":"DefaultTestObject \n \nDefaultTestObject.ExpectedRows \nExpectedRows \nDefaultTestObject.Sheet1 \nSheet1 \nDefaultTestObject.Sheet2 \nSheet2 \nDefaultTestObject.Sheet3 \nSheet3 \nDefaultTestObject.TestFiles \nTestFiles \nDefaultTestObject.WriteTestFiles \nWriteTestFiles \nDefaultTestObject.testFolder \ntestFolder \nDefaultTestObject.defaultTestObject \ndefaultTestObject \nDefaultTestObject.valueMap \nvalueMap","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/global-defaulttestobject.html#testFolder","title":"DefaultTestObject.testFolder","content":"DefaultTestObject.testFolder \ntestFolder \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/global-defaulttestobject.html#defaultTestObject","title":"DefaultTestObject.defaultTestObject","content":"DefaultTestObject.defaultTestObject \ndefaultTestObject \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/global-defaulttestobject.html#valueMap","title":"DefaultTestObject.valueMap","content":"DefaultTestObject.valueMap \nvalueMap \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/defaulttestobject-expectedrows.html","title":"ExpectedRows","content":"ExpectedRows \n \nExpectedRows.headerRow \nheaderRow \nExpectedRows.firstRow \nfirstRow \nExpectedRows.secondRow \nsecondRow \nExpectedRows.thirdRow \nthirdRow \nExpectedRows.fourthRow \nfourthRow \nExpectedRows.rowCollectionA1 \nrowCollectionA1 \nExpectedRows.rowCollectionB4 \nrowCollectionB4","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/defaulttestobject-expectedrows.html#headerRow","title":"ExpectedRows.headerRow","content":"ExpectedRows.headerRow \nheaderRow \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/defaulttestobject-expectedrows.html#firstRow","title":"ExpectedRows.firstRow","content":"ExpectedRows.firstRow \nfirstRow \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/defaulttestobject-expectedrows.html#secondRow","title":"ExpectedRows.secondRow","content":"ExpectedRows.secondRow \nsecondRow \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/defaulttestobject-expectedrows.html#thirdRow","title":"ExpectedRows.thirdRow","content":"ExpectedRows.thirdRow \nthirdRow \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/defaulttestobject-expectedrows.html#fourthRow","title":"ExpectedRows.fourthRow","content":"ExpectedRows.fourthRow \nfourthRow \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/defaulttestobject-expectedrows.html#rowCollectionA1","title":"ExpectedRows.rowCollectionA1","content":"ExpectedRows.rowCollectionA1 \nrowCollectionA1 \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/defaulttestobject-expectedrows.html#rowCollectionB4","title":"ExpectedRows.rowCollectionB4","content":"ExpectedRows.rowCollectionB4 \nrowCollectionB4 \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/defaulttestobject-sheet1.html","title":"Sheet1","content":"Sheet1 \n \nSheet1.sheetName \nsheetName \nSheet1.tableName \ntableName","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/defaulttestobject-sheet1.html#sheetName","title":"Sheet1.sheetName","content":"Sheet1.sheetName \nsheetName \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/defaulttestobject-sheet1.html#tableName","title":"Sheet1.tableName","content":"Sheet1.tableName \ntableName \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/defaulttestobject-sheet2.html","title":"Sheet2","content":"Sheet2 \n \nSheet2.sheetName \nsheetName","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/defaulttestobject-sheet2.html#sheetName","title":"Sheet2.sheetName","content":"Sheet2.sheetName \nsheetName \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/defaulttestobject-sheet3.html","title":"Sheet3","content":"Sheet3 \n \nSheet3.sheetName \nsheetName \nSheet3.tableName \ntableName","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/defaulttestobject-sheet3.html#sheetName","title":"Sheet3.sheetName","content":"Sheet3.sheetName \nsheetName \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/defaulttestobject-sheet3.html#tableName","title":"Sheet3.tableName","content":"Sheet3.tableName \ntableName \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/defaulttestobject-testfiles.html","title":"TestFiles","content":"TestFiles \n \nTestFiles.asRelativePath \nasRelativePath \nTestFiles.asFileName \nasFileName \nTestFiles.asRelativePathNode \nasRelativePathNode \nTestFiles.Excel \nExcel \nTestFiles.Libre \nLibre \nTestFiles.FableExceljs \nFableExceljs \nTestFiles.ClosedXML \nClosedXML \nTestFiles.FsSpreadsheetNET \nFsSpreadsheetNET \nTestFiles.FsSpreadsheetJS \nFsSpreadsheetJS \nTestFiles.BigFile \nBigFile","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/defaulttestobject-testfiles.html#asRelativePath","title":"TestFiles.asRelativePath","content":"TestFiles.asRelativePath \nasRelativePath \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/defaulttestobject-testfiles.html#asFileName","title":"TestFiles.asFileName","content":"TestFiles.asFileName \nasFileName \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/defaulttestobject-testfiles.html#asRelativePathNode","title":"TestFiles.asRelativePathNode","content":"TestFiles.asRelativePathNode \nasRelativePathNode \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/defaulttestobject-testfiles.html#Excel","title":"TestFiles.Excel","content":"TestFiles.Excel \nExcel \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/defaulttestobject-testfiles.html#Libre","title":"TestFiles.Libre","content":"TestFiles.Libre \nLibre \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/defaulttestobject-testfiles.html#FableExceljs","title":"TestFiles.FableExceljs","content":"TestFiles.FableExceljs \nFableExceljs \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/defaulttestobject-testfiles.html#ClosedXML","title":"TestFiles.ClosedXML","content":"TestFiles.ClosedXML \nClosedXML \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/defaulttestobject-testfiles.html#FsSpreadsheetNET","title":"TestFiles.FsSpreadsheetNET","content":"TestFiles.FsSpreadsheetNET \nFsSpreadsheetNET \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/defaulttestobject-testfiles.html#FsSpreadsheetJS","title":"TestFiles.FsSpreadsheetJS","content":"TestFiles.FsSpreadsheetJS \nFsSpreadsheetJS \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/defaulttestobject-testfiles.html#BigFile","title":"TestFiles.BigFile","content":"TestFiles.BigFile \nBigFile \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/defaulttestobject-writetestfiles.html","title":"WriteTestFiles","content":"WriteTestFiles \n \nWriteTestFiles.asRelativePath \nasRelativePath \nWriteTestFiles.asFileName \nasFileName \nWriteTestFiles.asRelativePathNode \nasRelativePathNode \nWriteTestFiles.FsSpreadsheetNET \nFsSpreadsheetNET \nWriteTestFiles.FsSpreadsheetJS \nFsSpreadsheetJS \nWriteTestFiles.FsSpreadsheetPY \nFsSpreadsheetPY \nWriteTestFiles.FsSpreadsheetJSON \nFsSpreadsheetJSON","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/defaulttestobject-writetestfiles.html#asRelativePath","title":"WriteTestFiles.asRelativePath","content":"WriteTestFiles.asRelativePath \nasRelativePath \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/defaulttestobject-writetestfiles.html#asFileName","title":"WriteTestFiles.asFileName","content":"WriteTestFiles.asFileName \nasFileName \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/defaulttestobject-writetestfiles.html#asRelativePathNode","title":"WriteTestFiles.asRelativePathNode","content":"WriteTestFiles.asRelativePathNode \nasRelativePathNode \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/defaulttestobject-writetestfiles.html#FsSpreadsheetNET","title":"WriteTestFiles.FsSpreadsheetNET","content":"WriteTestFiles.FsSpreadsheetNET \nFsSpreadsheetNET \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/defaulttestobject-writetestfiles.html#FsSpreadsheetJS","title":"WriteTestFiles.FsSpreadsheetJS","content":"WriteTestFiles.FsSpreadsheetJS \nFsSpreadsheetJS \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/defaulttestobject-writetestfiles.html#FsSpreadsheetPY","title":"WriteTestFiles.FsSpreadsheetPY","content":"WriteTestFiles.FsSpreadsheetPY \nFsSpreadsheetPY \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/defaulttestobject-writetestfiles.html#FsSpreadsheetJSON","title":"WriteTestFiles.FsSpreadsheetJSON","content":"WriteTestFiles.FsSpreadsheetJSON \nFsSpreadsheetJSON \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/global-testingutils.html","title":"TestingUtils","content":"TestingUtils \n \nTestingUtils.Expect \nExpect \nTestingUtils.Fable \nFable \nTestingUtils.Test \nTest \nTestingUtils.Utils \nUtils \nTestingUtils.Stopwatch \nStopwatch","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/testingutils-expect.html","title":"Expect","content":"Expect \n Fable compatible Expecto/Mocha unification \nExpect.equal \nequal \nExpect.notEqual \nnotEqual \nExpect.stringEqual \nstringEqual \nExpect.sequenceEqual \nsequenceEqual \nExpect.wantFaster \nwantFaster \nExpect.isFasterThan \nisFasterThan \nExpect.cellSequenceEquals \ncellSequenceEquals \nExpect.columnsEqual \ncolumnsEqual \nExpect.workSheetEqual \nworkSheetEqual \nExpect.isDefaultTestObject \nisDefaultTestObject \nExpect.isNull \nisNull \nExpect.isNotNull \nisNotNull \nExpect.isSome \nisSome \nExpect.isNone \nisNone \nExpect.wantSome \nwantSome \nExpect.isEmpty \nisEmpty \nExpect.hasLength \nhasLength \nExpect.isTrue \nisTrue \nExpect.isFalse \nisFalse \nExpect.wantError \nwantError \nExpect.wantOk \nwantOk \nExpect.isOk \nisOk \nExpect.isError \nisError \nExpect.throws \nthrows \nExpect.throwsC \nthrowsC \nExpect.exists \nexists \nExpect.containsAll \ncontainsAll \nExpect.passWithMsg \npassWithMsg \nExpect.fails \nfails","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/testingutils-expect.html#equal","title":"Expect.equal","content":"Expect.equal \nequal \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/testingutils-expect.html#notEqual","title":"Expect.notEqual","content":"Expect.notEqual \nnotEqual \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/testingutils-expect.html#stringEqual","title":"Expect.stringEqual","content":"Expect.stringEqual \nstringEqual \n This function only verifies non-whitespace characters","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/testingutils-expect.html#sequenceEqual","title":"Expect.sequenceEqual","content":"Expect.sequenceEqual \nsequenceEqual \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/testingutils-expect.html#wantFaster","title":"Expect.wantFaster","content":"Expect.wantFaster \nwantFaster \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/testingutils-expect.html#isFasterThan","title":"Expect.isFasterThan","content":"Expect.isFasterThan \nisFasterThan \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/testingutils-expect.html#cellSequenceEquals","title":"Expect.cellSequenceEquals","content":"Expect.cellSequenceEquals \ncellSequenceEquals \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/testingutils-expect.html#columnsEqual","title":"Expect.columnsEqual","content":"Expect.columnsEqual \ncolumnsEqual \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/testingutils-expect.html#workSheetEqual","title":"Expect.workSheetEqual","content":"Expect.workSheetEqual \nworkSheetEqual \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/testingutils-expect.html#isDefaultTestObject","title":"Expect.isDefaultTestObject","content":"Expect.isDefaultTestObject \nisDefaultTestObject \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/testingutils-expect.html#isNull","title":"Expect.isNull","content":"Expect.isNull \nisNull \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/testingutils-expect.html#isNotNull","title":"Expect.isNotNull","content":"Expect.isNotNull \nisNotNull \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/testingutils-expect.html#isSome","title":"Expect.isSome","content":"Expect.isSome \nisSome \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/testingutils-expect.html#isNone","title":"Expect.isNone","content":"Expect.isNone \nisNone \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/testingutils-expect.html#wantSome","title":"Expect.wantSome","content":"Expect.wantSome \nwantSome \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/testingutils-expect.html#isEmpty","title":"Expect.isEmpty","content":"Expect.isEmpty \nisEmpty \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/testingutils-expect.html#hasLength","title":"Expect.hasLength","content":"Expect.hasLength \nhasLength \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/testingutils-expect.html#isTrue","title":"Expect.isTrue","content":"Expect.isTrue \nisTrue \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/testingutils-expect.html#isFalse","title":"Expect.isFalse","content":"Expect.isFalse \nisFalse \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/testingutils-expect.html#wantError","title":"Expect.wantError","content":"Expect.wantError \nwantError \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/testingutils-expect.html#wantOk","title":"Expect.wantOk","content":"Expect.wantOk \nwantOk \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/testingutils-expect.html#isOk","title":"Expect.isOk","content":"Expect.isOk \nisOk \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/testingutils-expect.html#isError","title":"Expect.isError","content":"Expect.isError \nisError \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/testingutils-expect.html#throws","title":"Expect.throws","content":"Expect.throws \nthrows \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/testingutils-expect.html#throwsC","title":"Expect.throwsC","content":"Expect.throwsC \nthrowsC \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/testingutils-expect.html#exists","title":"Expect.exists","content":"Expect.exists \nexists \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/testingutils-expect.html#containsAll","title":"Expect.containsAll","content":"Expect.containsAll \ncontainsAll \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/testingutils-expect.html#passWithMsg","title":"Expect.passWithMsg","content":"Expect.passWithMsg \npassWithMsg \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/testingutils-expect.html#fails","title":"Expect.fails","content":"Expect.fails \nfails \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/testingutils-fable.html","title":"Fable","content":"Fable \n \nFable.JS \nJS \nFable.Py \nPy \nFable.fprint \nfprint","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/testingutils-fable.html#fprint","title":"Fable.fprint","content":"Fable.fprint \nfprint \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/testingutils-fable-js.html","title":"JS","content":"JS \n \nJS.print \nprint","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/testingutils-fable-js.html#print","title":"JS.print","content":"JS.print \nprint \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/testingutils-fable-py.html","title":"Py","content":"Py \n \nPy.print \nprint","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/testingutils-fable-py.html#print","title":"Py.print","content":"Py.print \nprint \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/testingutils-test.html","title":"Test","content":"Test \n Fable compatible Expecto/Mocha unification \nTest.test \ntest \nTest.testAsync \ntestAsync \nTest.testSequenced \ntestSequenced \nTest.testCase \ntestCase \nTest.ptestCase \nptestCase \nTest.ftestCase \nftestCase \nTest.testCaseAsync \ntestCaseAsync \nTest.ptestCaseAsync \nptestCaseAsync \nTest.ftestCaseAsync \nftestCaseAsync \nTest.testList \ntestList","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/testingutils-test.html#test","title":"Test.test","content":"Test.test \ntest \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/testingutils-test.html#testAsync","title":"Test.testAsync","content":"Test.testAsync \ntestAsync \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/testingutils-test.html#testSequenced","title":"Test.testSequenced","content":"Test.testSequenced \ntestSequenced \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/testingutils-test.html#testCase","title":"Test.testCase","content":"Test.testCase \ntestCase \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/testingutils-test.html#ptestCase","title":"Test.ptestCase","content":"Test.ptestCase \nptestCase \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/testingutils-test.html#ftestCase","title":"Test.ftestCase","content":"Test.ftestCase \nftestCase \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/testingutils-test.html#testCaseAsync","title":"Test.testCaseAsync","content":"Test.testCaseAsync \ntestCaseAsync \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/testingutils-test.html#ptestCaseAsync","title":"Test.ptestCaseAsync","content":"Test.ptestCaseAsync \nptestCaseAsync \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/testingutils-test.html#ftestCaseAsync","title":"Test.ftestCaseAsync","content":"Test.ftestCaseAsync \nftestCaseAsync \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/testingutils-test.html#testList","title":"Test.testList","content":"Test.testList \ntestList \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/testingutils-utils.html","title":"Utils","content":"Utils \n \nUtils.extractWords \nextractWords \nUtils.wordFrequency \nwordFrequency \nUtils.firstDiff \nfirstDiff","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/testingutils-utils.html#extractWords","title":"Utils.extractWords","content":"Utils.extractWords \nextractWords \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/testingutils-utils.html#wordFrequency","title":"Utils.wordFrequency","content":"Utils.wordFrequency \nwordFrequency \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/testingutils-utils.html#firstDiff","title":"Utils.firstDiff","content":"Utils.firstDiff \nfirstDiff \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/testingutils-stopwatch.html","title":"Stopwatch","content":"Stopwatch \n \nStopwatch.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \nStopwatch.Start \nStart \nStopwatch.Stop \nStop \nStopwatch.StartTime \nStartTime \nStopwatch.StopTime \nStopTime \nStopwatch.Elapsed \nElapsed","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/testingutils-stopwatch.html#\u0060\u0060.ctor\u0060\u0060","title":"Stopwatch.\u0060\u0060.ctor\u0060\u0060","content":"Stopwatch.\u0060\u0060.ctor\u0060\u0060 \n\u0060\u0060.ctor\u0060\u0060 \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/testingutils-stopwatch.html#Start","title":"Stopwatch.Start","content":"Stopwatch.Start \nStart \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/testingutils-stopwatch.html#Stop","title":"Stopwatch.Stop","content":"Stopwatch.Stop \nStop \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/testingutils-stopwatch.html#StartTime","title":"Stopwatch.StartTime","content":"Stopwatch.StartTime \nStartTime \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/testingutils-stopwatch.html#StopTime","title":"Stopwatch.StopTime","content":"Stopwatch.StopTime \nStopTime \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/reference/testingutils-stopwatch.html#Elapsed","title":"Stopwatch.Elapsed","content":"Stopwatch.Elapsed \nElapsed \n","headings":[],"type":"apiDocs"},{"uri":"/FsSpreadsheet/index.html","title":"FsSpreadsheet Documentation\n","content":"FsSpreadsheet Documentation\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).\nInstallation\nF#\nProject\ndotnet add package FsSpreadsheet.Net\n\nScript\n#r \u0026quot;nuget: FsSpreadsheet.Net\u0026quot;\n\nopen FsSpreadsheet\nopen FsSpreadsheet.Net\n\nJavascript\nnpm install @fslab/fsspreadsheet\n\nPython\npip install fsspreadsheet\n\nUsage_Xlsx_IO\nF#\nopen FsSpreadsheet\nopen FsSpreadsheet.Net\n\nlet path = \u0026quot;path/to/spreadsheet.xlsx\u0026quot;\n\nlet wb = FsWorkbook.fromXlsxFile(path)\n\nlet newPath = \u0026quot;path/to/new/spreadsheet.xlsx\u0026quot;\n\nwb.ToXlsxFile(newPath)\n\nJavascript\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\nPython\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\nUsage_Json_IO\nF#\nopen FsSpreadsheet\nopen FsSpreadsheet.Net\n\nlet path = \u0026quot;path/to/spreadsheet.json\u0026quot;\n\nlet wb = FsWorkbook.fromJsonFile(path)\n\nlet newPath = \u0026quot;path/to/new/spreadsheet.json\u0026quot;\n\nwb.ToJsonFile(newPath)\n\nJavascript\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\nPython\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\n","headings":["FsSpreadsheet Documentation","Installation","F#","Javascript","Python","Usage_Xlsx_IO","F#","Javascript","Python","Usage_Json_IO","F#","Javascript","Python"],"type":"content"}] \ No newline at end of file diff --git a/reference/asynciterable-cancellationtoken.html b/reference/asynciterable-cancellationtoken.html deleted file mode 100644 index 7fd73a04..00000000 --- a/reference/asynciterable-cancellationtoken.html +++ /dev/null @@ -1,265 +0,0 @@ - - - - - - CancellationToken (FsSpreadsheet) - - - - - - - - - - - - - - - - - - - -
-
- -
-
-
-
-
-

- AsyncIterable.CancellationToken Type -

- -
-
-

- -

-
-
-
-
-
-
-
-
-
-

- Constructors -

- - - - - - - - - - - - - -
- Constructor - - Description -
-
- -

- - - CancellationToken() - - -

-
-
-
- Full Usage: - CancellationToken() -
-
- - Returns: - CancellationToken - -
-
-
-
-
-
- - - - - - -

- -

-
-
-
- - Returns: - - CancellationToken -
-
-
-
-
-
-

- Instance members -

- - - - - - - - - - - - - -
- Instance member - - Description -
-
- -

- - - this.Cancel - - -

-
-
-
- Full Usage: - this.Cancel -
-
-
-
-
-
-
- - - - - - -

- -

-
-
-
-
-
-
-
-
- -
- - - - - - - - - - - \ No newline at end of file diff --git a/reference/defaulttestobject-expectedrows.html b/reference/defaulttestobject-expectedrows.html new file mode 100644 index 00000000..05376534 --- /dev/null +++ b/reference/defaulttestobject-expectedrows.html @@ -0,0 +1,632 @@ + + + + + + + + + + + + + + + + + + ExpectedRows (FsSpreadsheet) | FsSpreadsheet + + + + + + + + + + + + +
+
+ + + Header menu logo + FsSpreadsheet + +
+
+ + + + + +
+
+ +
+
+
+

+ ExpectedRows Module +

+ +
+
+

+ +

+
+
+
+

+ Functions and values +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Function or value + + Description +
+
+ +

+ + + firstRow range cc + + +

+
+
+
+ Full Usage: + firstRow range cc +
+
+ Parameters: + +
+ + Returns: + FsRow + +
+
+
+
+
+
+
+ + range + + : + string +
+
+
+ + cc + + : + FsCellsCollection +
+
+
+
+
+ + Returns: + + FsRow +
+
+
+
+
+ +

+ + + fourthRow range cc + + +

+
+
+
+ Full Usage: + fourthRow range cc +
+
+ Parameters: + +
+ + Returns: + FsRow + +
+
+
+
+
+
+
+ + range + + : + string +
+
+
+ + cc + + : + FsCellsCollection +
+
+
+
+
+ + Returns: + + FsRow +
+
+
+
+
+ +

+ + + headerRow range cc + + +

+
+
+
+ Full Usage: + headerRow range cc +
+
+ Parameters: + +
+ + Returns: + FsRow + +
+
+
+
+
+
+
+ + range + + : + string +
+
+
+ + cc + + : + FsCellsCollection +
+
+
+
+
+ + Returns: + + FsRow +
+
+
+
+
+ +

+ + + rowCollectionA1 + + +

+
+
+
+ Full Usage: + rowCollectionA1 +
+
+ + Returns: + FsRow array + +
+
+
+
+
+
+
+ + Returns: + + FsRow array +
+
+
+
+
+ +

+ + + rowCollectionB4 + + +

+
+
+
+ Full Usage: + rowCollectionB4 +
+
+ + Returns: + FsRow array + +
+
+
+
+
+
+
+ + Returns: + + FsRow array +
+
+
+
+
+ +

+ + + secondRow range cc + + +

+
+
+
+ Full Usage: + secondRow range cc +
+
+ Parameters: + +
+ + Returns: + FsRow + +
+
+
+
+
+
+
+ + range + + : + string +
+
+
+ + cc + + : + FsCellsCollection +
+
+
+
+
+ + Returns: + + FsRow +
+
+
+
+
+ +

+ + + thirdRow range cc + + +

+
+
+
+ Full Usage: + thirdRow range cc +
+
+ Parameters: + +
+ + Returns: + FsRow + +
+
+
+
+
+
+
+ + range + + : + string +
+
+
+ + cc + + : + FsCellsCollection +
+
+
+
+
+ + Returns: + + FsRow +
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+ + + +
+ +

Type something to start searching.

+
+
+ + + + + + + \ No newline at end of file diff --git a/reference/defaulttestobject-sheet1.html b/reference/defaulttestobject-sheet1.html new file mode 100644 index 00000000..405dec1e --- /dev/null +++ b/reference/defaulttestobject-sheet1.html @@ -0,0 +1,247 @@ + + + + + + + + + + + + + + + + + + Sheet1 (FsSpreadsheet) | FsSpreadsheet + + + + + + + + + + + + +
+
+ + + Header menu logo + FsSpreadsheet + +
+
+ + + + + +
+
+ +
+
+
+

+ Sheet1 Module +

+ +
+
+

+ +

+
+
+
+

+ Functions and values +

+ + + + + + + + + + + + + + + + + +
+ Function or value + + Description +
+
+ +

+ + + sheetName + + +

+
+
+
+ Full Usage: + sheetName +
+
+ + Returns: + string + +
+
+
+
+
+
+
+ + Returns: + + string +
+
+
+
+
+ +

+ + + tableName + + +

+
+
+
+ Full Usage: + tableName +
+
+ + Returns: + string + +
+
+
+
+
+
+
+ + Returns: + + string +
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+ + + +
+ +

Type something to start searching.

+
+
+ + + + + + + \ No newline at end of file diff --git a/reference/defaulttestobject-sheet2.html b/reference/defaulttestobject-sheet2.html new file mode 100644 index 00000000..164528bc --- /dev/null +++ b/reference/defaulttestobject-sheet2.html @@ -0,0 +1,208 @@ + + + + + + + + + + + + + + + + + + Sheet2 (FsSpreadsheet) | FsSpreadsheet + + + + + + + + + + + + +
+
+ + + Header menu logo + FsSpreadsheet + +
+
+ + + + + +
+
+ +
+
+
+

+ Sheet2 Module +

+ +
+
+

+ +

+
+
+
+

+ Functions and values +

+ + + + + + + + + + + + + +
+ Function or value + + Description +
+
+ +

+ + + sheetName + + +

+
+
+
+ Full Usage: + sheetName +
+
+ + Returns: + string + +
+
+
+
+
+
+
+ + Returns: + + string +
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+ + + +
+ +

Type something to start searching.

+
+
+ + + + + + + \ No newline at end of file diff --git a/reference/defaulttestobject-sheet3.html b/reference/defaulttestobject-sheet3.html new file mode 100644 index 00000000..cbf1eb4a --- /dev/null +++ b/reference/defaulttestobject-sheet3.html @@ -0,0 +1,247 @@ + + + + + + + + + + + + + + + + + + Sheet3 (FsSpreadsheet) | FsSpreadsheet + + + + + + + + + + + + +
+
+ + + Header menu logo + FsSpreadsheet + +
+
+ + + + + +
+
+ +
+
+
+

+ Sheet3 Module +

+ +
+
+

+ +

+
+
+
+

+ Functions and values +

+ + + + + + + + + + + + + + + + + +
+ Function or value + + Description +
+
+ +

+ + + sheetName + + +

+
+
+
+ Full Usage: + sheetName +
+
+ + Returns: + string + +
+
+
+
+
+
+
+ + Returns: + + string +
+
+
+
+
+ +

+ + + tableName + + +

+
+
+
+ Full Usage: + tableName +
+
+ + Returns: + string + +
+
+
+
+
+
+
+ + Returns: + + string +
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+ + + +
+ +

Type something to start searching.

+
+
+ + + + + + + \ No newline at end of file diff --git a/reference/defaulttestobject-testfiles.html b/reference/defaulttestobject-testfiles.html new file mode 100644 index 00000000..c5b92c51 --- /dev/null +++ b/reference/defaulttestobject-testfiles.html @@ -0,0 +1,530 @@ + + + + + + + + + + + + + + + + + + TestFiles (FsSpreadsheet) | FsSpreadsheet + + + + + + + + + + + + +
+
+ + + Header menu logo + FsSpreadsheet + +
+
+ + + + + +
+
+ +
+
+
+

+ TestFiles Type +

+ +
+
+

+ +

+
+
+
+
+
+
+

+ Union cases +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Union case + + Description +
+
+ +

+ + + BigFile + + +

+
+
+
+ Full Usage: + BigFile +
+
+
+
+
+
+
+

+ +

+
+
+
+ +

+ + + ClosedXML + + +

+
+
+
+ Full Usage: + ClosedXML +
+
+
+
+
+
+
+

+ +

+
+
+
+ +

+ + + Excel + + +

+
+
+
+ Full Usage: + Excel +
+
+
+
+
+
+
+

+ +

+
+
+
+ +

+ + + FableExceljs + + +

+
+
+
+ Full Usage: + FableExceljs +
+
+
+
+
+
+
+

+ +

+
+
+
+ +

+ + + FsSpreadsheetJS + + +

+
+
+
+ Full Usage: + FsSpreadsheetJS +
+
+
+
+
+
+
+

+ +

+
+
+
+ +

+ + + FsSpreadsheetNET + + +

+
+
+
+ Full Usage: + FsSpreadsheetNET +
+
+
+
+
+
+
+

+ +

+
+
+
+ +

+ + + Libre + + +

+
+
+
+ Full Usage: + Libre +
+
+
+
+
+
+
+

+ +

+
+
+
+
+
+
+
+

+ Instance members +

+ + + + + + + + + + + + + + + + + + + + + +
+ Instance member + + Description +
+
+ +

+ + + this.asFileName + + +

+
+
+
+ Full Usage: + this.asFileName +
+
+ + Returns: + string + +
+
+
+
+
+
+
+ + Returns: + + string +
+
+
+
+
+ +

+ + + this.asRelativePath + + +

+
+
+
+ Full Usage: + this.asRelativePath +
+
+ + Returns: + string + +
+
+
+
+
+
+
+ + Returns: + + string +
+
+
+
+
+ +

+ + + this.asRelativePathNode + + +

+
+
+
+ Full Usage: + this.asRelativePathNode +
+
+ + Returns: + string + +
+
+
+
+
+
+
+ + Returns: + + string +
+
+
+
+
+
+
+ +
+
+ + + +
+ +

Type something to start searching.

+
+
+ + + + + + + \ No newline at end of file diff --git a/reference/defaulttestobject-writetestfiles.html b/reference/defaulttestobject-writetestfiles.html new file mode 100644 index 00000000..e2ecdc5f --- /dev/null +++ b/reference/defaulttestobject-writetestfiles.html @@ -0,0 +1,440 @@ + + + + + + + + + + + + + + + + + + WriteTestFiles (FsSpreadsheet) | FsSpreadsheet + + + + + + + + + + + + +
+
+ + + Header menu logo + FsSpreadsheet + +
+
+ + + + + +
+
+ +
+
+
+

+ WriteTestFiles Type +

+ +
+
+

+ +

+
+
+
+
+
+
+

+ Union cases +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
+ Union case + + Description +
+
+ +

+ + + FsSpreadsheetJS + + +

+
+
+
+ Full Usage: + FsSpreadsheetJS +
+
+
+
+
+
+
+

+ +

+
+
+
+ +

+ + + FsSpreadsheetJSON + + +

+
+
+
+ Full Usage: + FsSpreadsheetJSON +
+
+
+
+
+
+
+

+ +

+
+
+
+ +

+ + + FsSpreadsheetNET + + +

+
+
+
+ Full Usage: + FsSpreadsheetNET +
+
+
+
+
+
+
+

+ +

+
+
+
+ +

+ + + FsSpreadsheetPY + + +

+
+
+
+ Full Usage: + FsSpreadsheetPY +
+
+
+
+
+
+
+

+ +

+
+
+
+
+
+
+
+

+ Instance members +

+ + + + + + + + + + + + + + + + + + + + + +
+ Instance member + + Description +
+
+ +

+ + + this.asFileName + + +

+
+
+
+ Full Usage: + this.asFileName +
+
+ + Returns: + string + +
+
+
+
+
+
+
+ + Returns: + + string +
+
+
+
+
+ +

+ + + this.asRelativePath + + +

+
+
+
+ Full Usage: + this.asRelativePath +
+
+ + Returns: + string + +
+
+
+
+
+
+
+ + Returns: + + string +
+
+
+
+
+ +

+ + + this.asRelativePathNode + + +

+
+
+
+ Full Usage: + this.asRelativePathNode +
+
+ + Returns: + string + +
+
+
+
+
+
+
+ + Returns: + + string +
+
+
+
+
+
+
+ +
+
+ + + +
+ +

Type something to start searching.

+
+
+ + + + + + + \ No newline at end of file diff --git a/reference/fsspreadsheet-cellreference.html b/reference/fsspreadsheet-cellreference.html index f812c596..05471902 100644 --- a/reference/fsspreadsheet-cellreference.html +++ b/reference/fsspreadsheet-cellreference.html @@ -1,62 +1,50 @@ - - + - - CellReference (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
-
- +
-
-
-
-
+ + Header menu logo + FsSpreadsheet + +
+
+ + + + + +
+ + +
+
+

CellReference Module

@@ -89,9 +108,7 @@

- - Module containing functions to work with "A1" style excel cell references. - + Module containing functions to work with "A1" style excel cell references.

@@ -151,44 +168,43 @@

-
- - - - - - -

- - Transforms excel column string indices (e.g. A, B, Z, AA, CD) to index number (starting with A = 1). - -

-
-
-
- - columnAdress - - : - string -
-
-
-
-
- - Returns: - - uint32 -
-
-
+
+ +
+ + + + + +

+ Transforms excel column string indices (e.g. A, B, Z, AA, CD) to index number (starting with A = 1). +

+
+
+
+
+ + columnAdress + + : + string +
+
+
+
+
+ + Returns: + + uint32 +
+
+
+
@@ -219,23 +235,6 @@

-
- - - - - - -

- -

-
@@ -267,7 +266,7 @@


Returns: - Regex + Regex

@@ -275,29 +274,12 @@

-
- - - - - - -

- -

-
Returns: - Regex + Regex
@@ -343,44 +325,43 @@

-
- - - - - - -

- - Transforms number index to excel column string indices (e.g. A, B, Z, AA, CD) (starting with A = 1). - -

-
-
-
- - i - - : - uint32 -
-
-
-
-
- - Returns: - - string -
-
-
+
+ +
+ + + + + +

+ Transforms number index to excel column string indices (e.g. A, B, Z, AA, CD) (starting with A = 1). +

+
+
+
+
+ + i + + : + uint32 +
+
+
+
+
+ + Returns: + + string +
+
+
+
@@ -431,52 +412,51 @@

-
- - - - - - -

- - Changes the column portion of a "A1"-style reference by the given amount (positive amount = increase and vice versa). - -

-
-
-
- - amount - - : - int -
-
-
- - reference - - : - string -
-
-
-
-
- - Returns: - - string -
-
-
+
+ +
+ + + + + +

+ Changes the column portion of a "A1"-style reference by the given amount (positive amount = increase and vice versa). +

+
+
+
+
+ + amount + + : + int +
+
+
+ + reference + + : + string +
+
+
+
+
+ + Returns: + + string +
+
+
+
@@ -527,52 +507,51 @@

-
- - - - - - -

- - Changes the row portion of a "A1"-style reference by the given amount (positive amount = increase and vice versa). - -

-
-
-
- - amount - - : - int -
-
-
- - reference - - : - string -
-
-
-
-
- - Returns: - - string -
-
-
+
+ +
+ + + + + +

+ Changes the row portion of a "A1"-style reference by the given amount (positive amount = increase and vice versa). +

+
+
+
+
+ + amount + + : + int +
+
+
+ + reference + + : + string +
+
+
+
+
+ + Returns: + + string +
+
+
+
@@ -623,52 +602,51 @@

-
- - - - - - -

- - Maps 1 based column and row indices to "A1" style reference. - -

-
-
-
- - column - - : - uint32 -
-
-
- - row - - : - uint32 -
-
-
-
-
- - Returns: - - string -
-
-
+
+ +
+ + + + + +

+ Maps 1 based column and row indices to "A1" style reference. +

+
+
+
+
+ + column + + : + uint32 +
+
+
+ + row + + : + uint32 +
+
+
+
+
+ + Returns: + + string +
+
+
+
@@ -719,52 +697,51 @@

-
- - - - - - -

- - Sets the column index (1 Based indices) of a "A1" style excel cell reference. - -

-
-
-
- - colI - - : - uint32 -
-
-
- - reference - - : - string -
-
-
-
-
- - Returns: - - string -
-
-
+
+ +
+ + + + + +

+ Sets the column index (1 Based indices) of a "A1" style excel cell reference. +

+
+
+
+
+ + colI + + : + uint32 +
+
+
+ + reference + + : + string +
+
+
+
+
+ + Returns: + + string +
+
+
+
@@ -815,52 +792,51 @@

-
- - - - - - -

- - Sets the row index (1 Based indices) of a "A1" style excel cell reference. - -

-
-
-
- - rowI - - : - uint32 -
-
-
- - reference - - : - string -
-
-
-
-
- - Returns: - - string -
-
-
+
+ +
+ + + + + +

+ Sets the row index (1 Based indices) of a "A1" style excel cell reference. +

+
+
+
+
+ + rowI + + : + uint32 +
+
+
+ + reference + + : + string +
+
+
+
+
+ + Returns: + + string +
+
+
+
@@ -903,44 +879,43 @@

-
- - - - - - -

- - Maps a "A1" style excel cell reference to a column (1 Based indices). - -

-
-
-
- - reference - - : - string -
-
-
-
-
- - Returns: - - uint32 -
-
-
+
+ +
+ + + + + +

+ Maps a "A1" style excel cell reference to a column (1 Based indices). +

+
+
+
+
+ + reference + + : + string +
+
+
+
+
+ + Returns: + + uint32 +
+
+
+
@@ -983,44 +958,43 @@

-
- - - - - - -

- - Maps a "A1" style excel cell reference to a column * row index tuple (1 Based indices). - -

-
-
-
- - reference - - : - string -
-
-
-
-
- - Returns: - - uint32 * uint32 -
-
-
+
+ +
+ + + + + +

+ Maps a "A1" style excel cell reference to a column * row index tuple (1 Based indices). +

+
+
+
+
+ + reference + + : + string +
+
+
+
+
+ + Returns: + + uint32 * uint32 +
+
+
+
@@ -1063,44 +1037,43 @@

-
- - - - - - -

- - Maps a "A1" style excel cell reference to a row (1 Based indices). - -

-
-
-
- - reference - - : - string -
-
-
-
-
- - Returns: - - uint32 -
-
-
+
+ +
+ + + + + +

+ Maps a "A1" style excel cell reference to a row (1 Based indices). +

+
+
+
+
+ + reference + + : + string +
+
+
+
+
+ + Returns: + + uint32 +
+
+
+
@@ -1115,19 +1088,24 @@

- - - + + + + +
+
    +

    Type something to start searching.

    +
    +
    + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-csvio-fsextensions.html b/reference/fsspreadsheet-csvio-fsextensions.html index 1b9d0b7f..1ff3a24c 100644 --- a/reference/fsspreadsheet-csvio-fsextensions.html +++ b/reference/fsspreadsheet-csvio-fsextensions.html @@ -1,62 +1,50 @@ - - + - - FsExtensions (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
    -
    - +
    -
    -
    -
    - +
    + + + + + +
    + + +
    +
    +

    FsExtensions Module

    @@ -150,23 +169,6 @@

    -
    - - - - - - -

    - -

    -

    Extended Type: FsWorkbook @@ -235,23 +237,6 @@

    -
    - - - - - - -

    - -

    -

    Extended Type: FsWorkbook @@ -301,7 +286,7 @@

    stream : - MemoryStream + MemoryStream
    @@ -319,23 +304,6 @@

    -
    - - - - - - -

    - -

    -

    Extended Type: FsWorkbook @@ -346,7 +314,7 @@

    stream : - MemoryStream + MemoryStream
    @@ -392,7 +360,7 @@


    Returns: - seq<string option> + string option seq

    @@ -400,23 +368,6 @@

    -
    - - - - - - -

    - -

    -

    Extended Type: FsRow @@ -436,7 +387,7 @@

    Returns: - seq<string option> + string option seq
    @@ -474,7 +425,7 @@


    Returns: - seq<seq<string option> option> + string option seq option seq

    @@ -482,23 +433,6 @@

    -
    - - - - - - -

    - -

    -

    Extended Type: FsWorksheet @@ -518,7 +452,7 @@

    Returns: - seq<seq<string option> option> + string option seq option seq
    @@ -564,23 +498,6 @@

    -
    - - - - - - -

    - -

    -

    Extended Type: FsWorksheet @@ -654,23 +571,6 @@

    -
    - - - - - - -

    - -

    -

    Extended Type: FsWorkbook @@ -755,23 +655,6 @@

    -
    - - - - - - -

    - -

    -

    Extended Type: FsWorkbook @@ -829,7 +712,7 @@

    stream : - MemoryStream + MemoryStream
    @@ -855,23 +738,6 @@

    -
    - - - - - - -

    - -

    -

    Extended Type: FsWorkbook @@ -882,7 +748,7 @@

    stream : - MemoryStream + MemoryStream
    @@ -915,19 +781,24 @@

    - - - + + + + +
    +
      +

      Type something to start searching.

      +
      +
      + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-csvio-writer.html b/reference/fsspreadsheet-csvio-writer.html index f1f792d5..7b434925 100644 --- a/reference/fsspreadsheet-csvio-writer.html +++ b/reference/fsspreadsheet-csvio-writer.html @@ -1,62 +1,50 @@ - - + - - Writer (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
      -
      - +
      -
      -
      -
      - +
      + + + + + +
      + + +
      +
      +

      Writer Type

      @@ -124,7 +143,7 @@

      - +

      @@ -133,7 +152,7 @@

      -
      +
      Full Usage: Writer.toCsvBytes (workbook, ?Separator) @@ -169,23 +188,6 @@

      -
      - - - - - - -

      - -

      -
      @@ -218,7 +220,7 @@

      - +

      @@ -227,7 +229,7 @@

      -
      +
      Full Usage: Writer.toCsvFile (path, workbook, ?Separator) @@ -266,23 +268,6 @@

      -
      - - - - - - -

      - -

      -
      @@ -314,7 +299,7 @@

      - +

      @@ -323,7 +308,7 @@

      -
      +
      Full Usage: Writer.toCsvStream (stream, workbook, ?Separator) @@ -336,7 +321,7 @@

      stream : - MemoryStream + MemoryStream
      @@ -362,30 +347,13 @@

      -
      - - - - - - -

      - -

      -
      stream : - MemoryStream + MemoryStream
      @@ -411,19 +379,24 @@

      -

      -

      -

      +

      + + + +
      +
        +

        Type something to start searching.

        +
        +
        + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-csvio.html b/reference/fsspreadsheet-csvio.html index bb073048..25bade13 100644 --- a/reference/fsspreadsheet-csvio.html +++ b/reference/fsspreadsheet-csvio.html @@ -1,62 +1,50 @@ - - + - - FsSpreadsheet.CsvIO - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
        -
        - +
        -
        -
        -
        - +
        + + + + + +
        + + +
        +
        +

        FsSpreadsheet.CsvIO Namespace

        @@ -101,16 +120,13 @@

        - - +

        @@ -131,16 +147,13 @@

        - - +

        @@ -151,19 +164,24 @@

        -

        -

        -
        + + + + +
        +
          +

          Type something to start searching.

          +
          +
          + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-datatype.html b/reference/fsspreadsheet-datatype.html index e843df6c..0d35a98e 100644 --- a/reference/fsspreadsheet-datatype.html +++ b/reference/fsspreadsheet-datatype.html @@ -1,62 +1,50 @@ - - + - - DataType (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
          -
          - +
          -
          -
          -
          - +
          + + + + + +
          + + +
          +
          +

          DataType Type

          @@ -91,23 +110,21 @@

          All Interfaces: - IEquatable<DataType> + IEquatable<DataType> , - IStructuralEquatable + IStructuralEquatable , - IComparable<DataType> + IComparable<DataType> , - IComparable + IComparable , - IStructuralComparable + IStructuralComparable

          - - Possible DataTypes used in a FsCell. - + Possible DataTypes used in a FsCell.

          @@ -133,7 +150,7 @@

          - +

          @@ -142,7 +159,7 @@

          -
          +
          Full Usage: Boolean @@ -155,8 +172,7 @@

          - - +

          @@ -167,7 +183,7 @@

          - +

          @@ -176,7 +192,7 @@

          -
          +
          Full Usage: Date @@ -189,8 +205,7 @@

          - - +

          @@ -201,7 +216,7 @@

          - +

          @@ -210,7 +225,7 @@

          -
          +
          Full Usage: Empty @@ -223,8 +238,7 @@

          - - +

          @@ -235,7 +249,7 @@

          - +

          @@ -244,7 +258,7 @@

          -
          +
          Full Usage: Number @@ -257,8 +271,7 @@

          - - +

          @@ -269,7 +282,7 @@

          - +

          @@ -278,7 +291,7 @@

          -
          +
          Full Usage: String @@ -291,8 +304,7 @@

          - - +

          @@ -326,7 +338,7 @@

          - +

          @@ -335,7 +347,7 @@

          -
          +
          Full Usage: DataType.InferCellValue(value) @@ -368,63 +380,67 @@

          -
          - - - - - - -

          - - Returns the proper CellValues case for the given value. - -

          -
          -
          -
          - - value - - : - 'T -
          -
          -
          -
          -
          - - Returns: - - DataType * obj -
          -
          -
          +
          + +
          + + + + + +

          + Returns the proper CellValues case for the given value. +

          +
          +
          +
          +
          + + value + + : + 'T +
          +
          +
          +
          +
          + + Returns: + + DataType * obj +
          +
          +
          +
          -

          -

          -

          + + + + +
          +
            +

            Type something to start searching.

            +
            +
            + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-dictionary.html b/reference/fsspreadsheet-dictionary.html index d1741544..d180ce29 100644 --- a/reference/fsspreadsheet-dictionary.html +++ b/reference/fsspreadsheet-dictionary.html @@ -1,62 +1,50 @@ - - + - - Dictionary (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
            -
            - +
            -
            -
            -
            - +
            + + + + + +
            + + +
            +
            +

            Dictionary Module

            @@ -142,7 +161,7 @@

            dict : - Dictionary<'Key, 'Value> + Dictionary<'Key, 'Value>
            @@ -157,23 +176,6 @@

            -
            - - - - - - -

            - -

            -
            @@ -188,7 +190,7 @@

            dict : - Dictionary<'Key, 'Value> + Dictionary<'Key, 'Value>

            @@ -215,19 +217,24 @@

            -
            -
            -
            + + + + +
            +
              +

              Type something to start searching.

              +
              +
              + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-dsl-cellbuilder.html b/reference/fsspreadsheet-dsl-cellbuilder.html index 442283cf..e3d87ca1 100644 --- a/reference/fsspreadsheet-dsl-cellbuilder.html +++ b/reference/fsspreadsheet-dsl-cellbuilder.html @@ -1,62 +1,50 @@ - - + - - CellBuilder (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
              -
              - +
              -
              -
              -
              - +
              + + + + + +
              + + +
              +
              +

              CellBuilder Type

              @@ -122,7 +141,7 @@

              - +

              @@ -131,7 +150,7 @@

              -
              +
              Full Usage: CellBuilder() @@ -147,23 +166,6 @@

              -
              - - - - - - -

              - -

              -
              @@ -197,7 +199,7 @@

              - +

              @@ -206,7 +208,7 @@

              -
              +
              Full Usage: this.AsCellElement @@ -234,23 +236,6 @@

              -
              - - - - - - -

              - -

              -
              @@ -275,7 +260,7 @@

              - +

              @@ -284,7 +269,7 @@

              -
              +
              Full Usage: this.Combine @@ -320,23 +305,6 @@

              -
              - - - - - - -

              - -

              -
              @@ -369,7 +337,7 @@

              - +

              @@ -378,7 +346,7 @@

              -
              +
              Full Usage: this.Combine @@ -414,23 +382,6 @@

              -
              - - - - - - -

              - -

              -
              @@ -463,7 +414,7 @@

              - +

              @@ -472,7 +423,7 @@

              -
              +
              Full Usage: this.Combine @@ -508,23 +459,6 @@

              -
              - - - - - - -

              - -

              -
              @@ -557,7 +491,7 @@

              - +

              @@ -566,7 +500,7 @@

              -
              +
              Full Usage: this.Combine @@ -602,23 +536,6 @@

              -
              - - - - - - -

              - -

              -
              @@ -651,7 +568,7 @@

              - +

              @@ -660,7 +577,7 @@

              -
              +
              Full Usage: this.Combine @@ -696,23 +613,6 @@

              -
              - - - - - - -

              - -

              -
              @@ -745,7 +645,7 @@

              - +

              @@ -754,7 +654,7 @@

              -
              +
              Full Usage: this.Combine @@ -790,23 +690,6 @@

              -
              - - - - - - -

              - -

              -
              @@ -839,7 +722,7 @@

              - +

              @@ -848,7 +731,7 @@

              -
              +
              Full Usage: this.Combine @@ -884,23 +767,6 @@

              -
              - - - - - - -

              - -

              -
              @@ -933,7 +799,7 @@

              - +

              @@ -942,7 +808,7 @@

              -
              +
              Full Usage: this.Combine @@ -978,23 +844,6 @@

              -
              - - - - - - -

              - -

              -
              @@ -1027,7 +876,7 @@

              - +

              @@ -1036,7 +885,7 @@

              -
              +
              Full Usage: this.Combine @@ -1072,23 +921,6 @@

              -
              - - - - - - -

              - -

              -
              @@ -1121,7 +953,7 @@

              - +

              @@ -1130,7 +962,7 @@

              -
              +
              Full Usage: this.Delay @@ -1163,23 +995,6 @@

              -
              - - - - - - -

              - -

              -
              @@ -1204,7 +1019,7 @@

              - +

              @@ -1213,7 +1028,7 @@

              -
              +
              Full Usage: this.For @@ -1226,7 +1041,7 @@

              vs : - seq<'T> + 'T seq
              @@ -1254,30 +1069,13 @@

              -
              - - - - - - -

              - -

              -
              vs : - seq<'T> + 'T seq
              @@ -1303,7 +1101,7 @@

              - +

              @@ -1312,7 +1110,7 @@

              -
              +
              Full Usage: this.Quote @@ -1340,23 +1138,6 @@

              -
              - - - - - - -

              - -

              -
              @@ -1381,7 +1162,7 @@

              - +

              @@ -1390,7 +1171,7 @@

              -
              +
              Full Usage: this.Run @@ -1421,23 +1202,6 @@

              -
              - - - - - - -

              - -

              -
              @@ -1462,7 +1226,7 @@

              - +

              @@ -1471,7 +1235,7 @@

              -
              +
              Full Usage: this.Run @@ -1502,23 +1266,6 @@

              -
              - - - - - - -

              - -

              -
              @@ -1543,7 +1290,7 @@

              - +

              @@ -1552,7 +1299,7 @@

              -
              +
              Full Usage: this.Run @@ -1583,23 +1330,6 @@

              -
              - - - - - - -

              - -

              -
              @@ -1624,7 +1354,7 @@

              - +

              @@ -1633,7 +1363,7 @@

              -
              +
              Full Usage: this.SignMessages @@ -1661,23 +1391,6 @@

              -
              - - - - - - -

              - -

              -
              @@ -1702,7 +1415,7 @@

              - +

              @@ -1711,7 +1424,7 @@

              -
              +
              Full Usage: this.Yield @@ -1744,23 +1457,6 @@

              -
              - - - - - - -

              - -

              -
              @@ -1785,7 +1481,7 @@

              - +

              @@ -1794,7 +1490,7 @@

              -
              +
              Full Usage: this.Yield @@ -1825,23 +1521,6 @@

              -
              - - - - - - -

              - -

              -
              @@ -1866,7 +1545,7 @@

              - +

              @@ -1875,7 +1554,7 @@

              -
              +
              Full Usage: this.Yield @@ -1908,23 +1587,6 @@

              -
              - - - - - - -

              - -

              -
              @@ -1949,7 +1611,7 @@

              - +

              @@ -1958,7 +1620,7 @@

              -
              +
              Full Usage: this.Yield @@ -1989,23 +1651,6 @@

              -
              - - - - - - -

              - -

              -
              @@ -2030,7 +1675,7 @@

              - +

              @@ -2039,7 +1684,7 @@

              -
              +
              Full Usage: this.Yield @@ -2070,23 +1715,6 @@

              -
              - - - - - - -

              - -

              -
              @@ -2111,7 +1739,7 @@

              - +

              @@ -2120,7 +1748,7 @@

              -
              +
              Full Usage: this.Yield @@ -2151,23 +1779,6 @@

              -
              - - - - - - -

              - -

              -
              @@ -2192,7 +1803,7 @@

              - +

              @@ -2201,7 +1812,7 @@

              -
              +
              Full Usage: this.Yield @@ -2229,23 +1840,6 @@

              -
              - - - - - - -

              - -

              -
              @@ -2270,7 +1864,7 @@

              - +

              @@ -2279,7 +1873,7 @@

              -
              +
              Full Usage: this.Yield @@ -2310,23 +1904,6 @@

              -
              - - - - - - -

              - -

              -
              @@ -2351,7 +1928,7 @@

              - +

              @@ -2360,7 +1937,7 @@

              -
              +
              Full Usage: this.Yield @@ -2391,23 +1968,6 @@

              -
              - - - - - - -

              - -

              -
              @@ -2432,7 +1992,7 @@

              - +

              @@ -2441,7 +2001,7 @@

              -
              +
              Full Usage: this.YieldFrom @@ -2454,7 +2014,7 @@

              ns : - seq<SheetEntity<Value list>> + SheetEntity<Value list> seq
              @@ -2472,30 +2032,13 @@

              -
              - - - - - - -

              - -

              -
              ns : - seq<SheetEntity<Value list>> + SheetEntity<Value list> seq
              @@ -2513,7 +2056,7 @@

              - +

              @@ -2522,7 +2065,7 @@

              -
              +
              Full Usage: this.Zero @@ -2541,23 +2084,6 @@

              -
              - - - - - - -

              - -

              -
              @@ -2591,7 +2117,7 @@

              - +

              @@ -2600,7 +2126,7 @@

              -
              +
              Full Usage: CellBuilder.Empty @@ -2616,23 +2142,6 @@

              -
              - - - - - - -

              - -

              -
              @@ -2648,19 +2157,24 @@

              -

              -

              -

              +

              + + + +
              +
                +

                Type something to start searching.

                +
                +
                + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-dsl-cellelement.html b/reference/fsspreadsheet-dsl-cellelement.html index 24ce8cf4..fdff166c 100644 --- a/reference/fsspreadsheet-dsl-cellelement.html +++ b/reference/fsspreadsheet-dsl-cellelement.html @@ -1,62 +1,50 @@ - - + - - CellElement (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                -
                - +
                -
                -
                -
                - +
                + + + + + +
                + + +
                +
                +

                CellElement Type

                @@ -95,13 +114,13 @@

                All Interfaces: - IStructuralComparable + IStructuralComparable , - IStructuralEquatable + IStructuralEquatable , - IComparable + IComparable , - ITuple + ITuple
                @@ -137,7 +156,7 @@

                - +

                @@ -146,7 +165,7 @@

                -
                +
                Full Usage: this.Item1 @@ -162,19 +181,6 @@

                -
                - - -

                - -

                -
                @@ -189,7 +195,7 @@

                - +

                @@ -198,7 +204,7 @@

                -
                +
                Full Usage: this.Item2 @@ -214,19 +220,6 @@

                -
                - - -

                - -

                -
                @@ -243,19 +236,24 @@

                -

                -

                -

                +

                + + + +
                +
                  +

                  Type something to start searching.

                  +
                  +
                  + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-dsl-columnbuilder.html b/reference/fsspreadsheet-dsl-columnbuilder.html index 2ee1a3c7..92eb29da 100644 --- a/reference/fsspreadsheet-dsl-columnbuilder.html +++ b/reference/fsspreadsheet-dsl-columnbuilder.html @@ -1,62 +1,50 @@ - - + - - ColumnBuilder (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                  -
                  - +
                  -
                  -
                  -
                  - +
                  + + + + + +
                  + + +
                  +
                  +

                  ColumnBuilder Type

                  @@ -122,7 +141,7 @@

                  - +

                  @@ -131,7 +150,7 @@

                  -
                  +
                  Full Usage: ColumnBuilder() @@ -147,23 +166,6 @@

                  -
                  - - - - - - -

                  - -

                  -
                  @@ -197,7 +199,7 @@

                  - +

                  @@ -206,7 +208,7 @@

                  -
                  +
                  Full Usage: this.Combine @@ -242,23 +244,6 @@

                  -
                  - - - - - - -

                  - -

                  -
                  @@ -291,7 +276,7 @@

                  - +

                  @@ -300,7 +285,7 @@

                  -
                  +
                  Full Usage: this.Combine @@ -336,23 +321,6 @@

                  -
                  - - - - - - -

                  - -

                  -
                  @@ -385,7 +353,7 @@

                  - +

                  @@ -394,7 +362,7 @@

                  -
                  +
                  Full Usage: this.Combine @@ -430,23 +398,6 @@

                  -
                  - - - - - - -

                  - -

                  -
                  @@ -479,7 +430,7 @@

                  - +

                  @@ -488,7 +439,7 @@

                  -
                  +
                  Full Usage: this.Combine @@ -524,23 +475,6 @@

                  -
                  - - - - - - -

                  - -

                  -
                  @@ -573,7 +507,7 @@

                  - +

                  @@ -582,7 +516,7 @@

                  -
                  +
                  Full Usage: this.Combine @@ -618,23 +552,6 @@

                  -
                  - - - - - - -

                  - -

                  -
                  @@ -667,7 +584,7 @@

                  - +

                  @@ -676,7 +593,7 @@

                  -
                  +
                  Full Usage: this.Combine @@ -712,23 +629,6 @@

                  -
                  - - - - - - -

                  - -

                  -
                  @@ -761,7 +661,7 @@

                  - +

                  @@ -770,7 +670,7 @@

                  -
                  +
                  Full Usage: this.Combine @@ -806,23 +706,6 @@

                  -
                  - - - - - - -

                  - -

                  -
                  @@ -855,7 +738,7 @@

                  - +

                  @@ -864,7 +747,7 @@

                  -
                  +
                  Full Usage: this.Combine @@ -900,23 +783,6 @@

                  -
                  - - - - - - -

                  - -

                  -
                  @@ -949,7 +815,7 @@

                  - +

                  @@ -958,7 +824,7 @@

                  -
                  +
                  Full Usage: this.Combine @@ -994,23 +860,6 @@

                  -
                  - - - - - - -

                  - -

                  -
                  @@ -1043,7 +892,7 @@

                  - +

                  @@ -1052,7 +901,7 @@

                  -
                  +
                  Full Usage: this.Delay @@ -1085,23 +934,6 @@

                  -
                  - - - - - - -

                  - -

                  -
                  @@ -1126,7 +958,7 @@

                  - +

                  @@ -1135,7 +967,7 @@

                  -
                  +
                  Full Usage: this.For @@ -1148,7 +980,7 @@

                  vs : - seq<'T> + 'T seq
                  @@ -1176,30 +1008,13 @@

                  -
                  - - - - - - -

                  - -

                  -
                  vs : - seq<'T> + 'T seq
                  @@ -1225,7 +1040,7 @@

                  - +

                  @@ -1234,7 +1049,7 @@

                  -
                  +
                  Full Usage: this.Quote @@ -1262,23 +1077,6 @@

                  -
                  - - - - - - -

                  - -

                  -
                  @@ -1303,7 +1101,7 @@

                  - +

                  @@ -1312,7 +1110,7 @@

                  -
                  +
                  Full Usage: this.Run @@ -1343,23 +1141,6 @@

                  -
                  - - - - - - -

                  - -

                  -
                  @@ -1384,7 +1165,7 @@

                  - +

                  @@ -1393,7 +1174,7 @@

                  -
                  +
                  Full Usage: this.Run @@ -1424,23 +1205,6 @@

                  -
                  - - - - - - -

                  - -

                  -
                  @@ -1465,7 +1229,7 @@

                  - +

                  @@ -1474,7 +1238,7 @@

                  -
                  +
                  Full Usage: this.Run @@ -1505,23 +1269,6 @@

                  -
                  - - - - - - -

                  - -

                  -
                  @@ -1546,7 +1293,7 @@

                  - +

                  @@ -1555,7 +1302,7 @@

                  -
                  +
                  Full Usage: this.SignMessages @@ -1583,23 +1330,6 @@

                  -
                  - - - - - - -

                  - -

                  -
                  @@ -1624,7 +1354,7 @@

                  - +

                  @@ -1633,7 +1363,7 @@

                  -
                  +
                  Full Usage: this.Yield @@ -1666,23 +1396,6 @@

                  -
                  - - - - - - -

                  - -

                  -
                  @@ -1707,7 +1420,7 @@

                  - +

                  @@ -1716,7 +1429,7 @@

                  -
                  +
                  Full Usage: this.Yield @@ -1747,23 +1460,6 @@

                  -
                  - - - - - - -

                  - -

                  -
                  @@ -1788,7 +1484,7 @@

                  - +

                  @@ -1797,7 +1493,7 @@

                  -
                  +
                  Full Usage: this.Yield @@ -1828,23 +1524,6 @@

                  -
                  - - - - - - -

                  - -

                  -
                  @@ -1869,7 +1548,7 @@

                  - +

                  @@ -1878,7 +1557,7 @@

                  -
                  +
                  Full Usage: this.Yield @@ -1909,23 +1588,6 @@

                  -
                  - - - - - - -

                  - -

                  -
                  @@ -1950,7 +1612,7 @@

                  - +

                  @@ -1959,7 +1621,7 @@

                  -
                  +
                  Full Usage: this.Yield @@ -1972,7 +1634,7 @@

                  cs : - seq<SheetEntity<CellElement>> + SheetEntity<CellElement> seq
                  @@ -1990,30 +1652,13 @@

                  -
                  - - - - - - -

                  - -

                  -
                  cs : - seq<SheetEntity<CellElement>> + SheetEntity<CellElement> seq
                  @@ -2031,7 +1676,7 @@

                  - +

                  @@ -2040,7 +1685,7 @@

                  -
                  +
                  Full Usage: this.Yield @@ -2071,23 +1716,6 @@

                  -
                  - - - - - - -

                  - -

                  -
                  @@ -2112,7 +1740,7 @@

                  - +

                  @@ -2121,7 +1749,7 @@

                  -
                  +
                  Full Usage: this.Yield @@ -2152,23 +1780,6 @@

                  -
                  - - - - - - -

                  - -

                  -
                  @@ -2193,7 +1804,7 @@

                  - +

                  @@ -2202,7 +1813,7 @@

                  -
                  +
                  Full Usage: this.Yield @@ -2233,23 +1844,6 @@

                  -
                  - - - - - - -

                  - -

                  -
                  @@ -2274,7 +1868,7 @@

                  - +

                  @@ -2283,7 +1877,7 @@

                  -
                  +
                  Full Usage: this.Yield @@ -2314,23 +1908,6 @@

                  -
                  - - - - - - -

                  - -

                  -
                  @@ -2355,7 +1932,7 @@

                  - +

                  @@ -2364,7 +1941,7 @@

                  -
                  +
                  Full Usage: this.Yield @@ -2395,23 +1972,6 @@

                  -
                  - - - - - - -

                  - -

                  -
                  @@ -2436,7 +1996,7 @@

                  - +

                  @@ -2445,7 +2005,7 @@

                  -
                  +
                  Full Usage: this.Yield @@ -2476,23 +2036,6 @@

                  -
                  - - - - - - -

                  - -

                  -
                  @@ -2517,7 +2060,7 @@

                  - +

                  @@ -2526,7 +2069,7 @@

                  -
                  +
                  Full Usage: this.Yield @@ -2557,23 +2100,6 @@

                  -
                  - - - - - - -

                  - -

                  -
                  @@ -2598,7 +2124,7 @@

                  - +

                  @@ -2607,7 +2133,7 @@

                  -
                  +
                  Full Usage: this.Yield @@ -2638,23 +2164,6 @@

                  -
                  - - - - - - -

                  - -

                  -
                  @@ -2679,7 +2188,7 @@

                  - +

                  @@ -2688,7 +2197,7 @@

                  -
                  +
                  Full Usage: this.YieldFrom @@ -2701,7 +2210,7 @@

                  ns : - seq<SheetEntity<ColumnElement list>> + SheetEntity<ColumnElement list> seq
                  @@ -2719,30 +2228,13 @@

                  -
                  - - - - - - -

                  - -

                  -
                  ns : - seq<SheetEntity<ColumnElement list>> + SheetEntity<ColumnElement list> seq
                  @@ -2760,7 +2252,7 @@

                  - +

                  @@ -2769,7 +2261,7 @@

                  -
                  +
                  Full Usage: this.Zero @@ -2788,23 +2280,6 @@

                  -
                  - - - - - - -

                  - -

                  -
                  @@ -2838,7 +2313,7 @@

                  - +

                  @@ -2847,7 +2322,7 @@

                  -
                  +
                  Full Usage: ColumnBuilder.Empty @@ -2863,23 +2338,6 @@

                  -
                  - - - - - - -

                  - -

                  -
                  @@ -2895,19 +2353,24 @@

                  -

                  -

                  -

                  +

                  + + + +
                  +
                    +

                    Type something to start searching.

                    +
                    +
                    + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-dsl-columnelement.html b/reference/fsspreadsheet-dsl-columnelement.html index 2955655b..3bef612a 100644 --- a/reference/fsspreadsheet-dsl-columnelement.html +++ b/reference/fsspreadsheet-dsl-columnelement.html @@ -1,62 +1,50 @@ - - + - - ColumnElement (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                    -
                    - +
                    -
                    -
                    -
                    - +
                    + + + + + +
                    + + +
                    +
                    +

                    ColumnElement Type

                    @@ -91,9 +110,9 @@

                    All Interfaces: - IEquatable<ColumnElement> + IEquatable<ColumnElement> , - IStructuralEquatable + IStructuralEquatable
                    @@ -125,7 +144,7 @@

                    - +

                    @@ -134,7 +153,7 @@

                    -
                    +
                    Full Usage: IndexedCell(RowIndex, Value) @@ -165,15 +184,6 @@

                    -
                    - - - - -

                    - -

                    -
                    @@ -197,7 +207,7 @@

                    - +

                    @@ -206,7 +216,7 @@

                    -
                    +
                    Full Usage: UnindexedCell Value @@ -229,15 +239,6 @@

                    -
                    - - - - -

                    - -

                    -
                    @@ -259,19 +260,24 @@

                    -
                    -

                    -

                    +

                    + + + +
                    +
                      +

                      Type something to start searching.

                      +
                      +
                      + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-dsl-columnindex.html b/reference/fsspreadsheet-dsl-columnindex.html index 10fc8b89..330cffe6 100644 --- a/reference/fsspreadsheet-dsl-columnindex.html +++ b/reference/fsspreadsheet-dsl-columnindex.html @@ -1,62 +1,50 @@ - - + - - ColumnIndex (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                      -
                      - +
                      -
                      -
                      -
                      - +
                      + + + + + +
                      + + +
                      +
                      +

                      ColumnIndex Type

                      @@ -91,15 +110,15 @@

                      All Interfaces: - IEquatable<ColumnIndex> + IEquatable<ColumnIndex> , - IStructuralEquatable + IStructuralEquatable , - IComparable<ColumnIndex> + IComparable<ColumnIndex> , - IComparable + IComparable , - IStructuralComparable + IStructuralComparable
                      @@ -131,7 +150,7 @@

                      - +

                      @@ -140,7 +159,7 @@

                      -
                      +
                      Full Usage: Col int @@ -163,15 +182,6 @@

                      -
                      - - - - -

                      - -

                      -
                      @@ -209,7 +219,7 @@

                      - +

                      @@ -218,7 +228,7 @@

                      -
                      +
                      Full Usage: this.Index @@ -234,23 +244,6 @@

                      -
                      - - - - - - -

                      - -

                      -
                      @@ -267,19 +260,24 @@

                      -

                      -

                      -

                      +

                      + + + +
                      +
                        +

                        Type something to start searching.

                        +
                        +
                        + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-dsl-dsl.html b/reference/fsspreadsheet-dsl-dsl.html index 406347e5..1e92bd2e 100644 --- a/reference/fsspreadsheet-dsl-dsl.html +++ b/reference/fsspreadsheet-dsl-dsl.html @@ -1,62 +1,50 @@ - - + - - DSL (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                        -
                        - +
                        -
                        -
                        -
                        - +
                        + + + + + +
                        + + +
                        +
                        +

                        DSL Type

                        @@ -124,7 +143,7 @@

                        - +

                        @@ -133,7 +152,7 @@

                        -
                        +
                        Full Usage: DSL.cell @@ -152,40 +171,39 @@

                        -
                        - - - - - - -

                        - - Create a cell from a value - -

                        -
                        -
                        -
                        - - Returns: - - CellBuilder -
                        -
                        -
                        +
                        + +
                        + + + + + +

                        + Create a cell from a value +

                        +
                        +
                        +
                        +
                        + + Returns: + + CellBuilder +
                        +
                        +
                        +
                        - +

                        @@ -194,7 +212,7 @@

                        -
                        +
                        Full Usage: DSL.column @@ -213,40 +231,39 @@

                        -
                        - - - - - - -

                        - - Create a column from cells - -

                        -
                        -
                        -
                        - - Returns: - - ColumnBuilder -
                        -
                        -
                        +
                        + +
                        + + + + + +

                        + Create a column from cells +

                        +
                        +
                        +
                        +
                        + + Returns: + + ColumnBuilder +
                        +
                        +
                        +
                        - +

                        @@ -255,7 +272,7 @@

                        -
                        +
                        Full Usage: DSL.dropCell message @@ -283,50 +300,49 @@

                        -
                        - - - - - - -

                        - - Drops the cell with the given message - -

                        -
                        -
                        -
                        - - message - - : - Message -
                        -
                        -
                        -
                        -
                        - - Returns: - - SheetEntity<Value> -
                        -
                        -
                        +
                        + +
                        + + + + + +

                        + Drops the cell with the given message +

                        +
                        +
                        +
                        +
                        + + message + + : + Message +
                        +
                        +
                        +
                        +
                        + + Returns: + + SheetEntity<Value> +
                        +
                        +
                        +
                        - +

                        @@ -335,7 +351,7 @@

                        -
                        +
                        Full Usage: DSL.dropColumn message @@ -363,50 +379,49 @@

                        -
                        - - - - - - -

                        - - Drops the column with the given message - -

                        -
                        -
                        -
                        - - message - - : - Message -
                        -
                        -
                        -
                        -
                        - - Returns: - - SheetEntity<ColumnElement> -
                        -
                        -
                        +
                        + +
                        + + + + + +

                        + Drops the column with the given message +

                        +
                        +
                        +
                        +
                        + + message + + : + Message +
                        +
                        +
                        +
                        +
                        + + Returns: + + SheetEntity<ColumnElement> +
                        +
                        +
                        +
                        - +

                        @@ -415,7 +430,7 @@

                        -
                        +
                        Full Usage: DSL.dropRow message @@ -443,50 +458,49 @@

                        -
                        - - - - - - -

                        - - Drops the row with the given message - -

                        -
                        -
                        -
                        - - message - - : - Message -
                        -
                        -
                        -
                        -
                        - - Returns: - - SheetEntity<RowElement> -
                        -
                        -
                        +
                        + +
                        + + + + + +

                        + Drops the row with the given message +

                        +
                        +
                        +
                        +
                        + + message + + : + Message +
                        +
                        +
                        +
                        +
                        + + Returns: + + SheetEntity<RowElement> +
                        +
                        +
                        +
                        - +

                        @@ -495,7 +509,7 @@

                        -
                        +
                        Full Usage: DSL.dropSheet message @@ -523,50 +537,49 @@

                        -
                        - - - - - - -

                        - - Drops the sheet with the given message - -

                        -
                        -
                        -
                        - - message - - : - Message -
                        -
                        -
                        -
                        -
                        - - Returns: - - SheetEntity<SheetElement> -
                        -
                        -
                        +
                        + +
                        + + + + + +

                        + Drops the sheet with the given message +

                        +
                        +
                        +
                        +
                        + + message + + : + Message +
                        +
                        +
                        +
                        +
                        + + Returns: + + SheetEntity<SheetElement> +
                        +
                        +
                        +
                        - +

                        @@ -575,7 +588,7 @@

                        -
                        +
                        Full Usage: DSL.dropWorkbook message @@ -603,50 +616,49 @@

                        -
                        - - - - - - -

                        - - Drops the workbook with the given message - -

                        -
                        -
                        -
                        - - message - - : - Message -
                        -
                        -
                        -
                        -
                        - - Returns: - - SheetEntity<WorkbookElement> -
                        -
                        -
                        +
                        + +
                        + + + + + +

                        + Drops the workbook with the given message +

                        +
                        +
                        +
                        +
                        + + message + + : + Message +
                        +
                        +
                        +
                        +
                        + + Returns: + + SheetEntity<WorkbookElement> +
                        +
                        +
                        +
                        - +

                        @@ -655,7 +667,7 @@

                        -
                        +
                        Full Usage: DSL.opt elem @@ -683,50 +695,49 @@

                        -
                        - - - - - - -

                        - - Transforms any given missing element expression to an optional. - -

                        -
                        -
                        -
                        - - elem - - : - Expr<SheetEntity<'T list>> -
                        -
                        -
                        -
                        -
                        - - Returns: - - SheetEntity<'T list> -
                        -
                        -
                        +
                        + +
                        + + + + + +

                        + Transforms any given missing element expression to an optional. +

                        +
                        +
                        +
                        +
                        + + elem + + : + Expr<SheetEntity<'T list>> +
                        +
                        +
                        +
                        +
                        + + Returns: + + SheetEntity<'T list> +
                        +
                        +
                        +
                        - +

                        @@ -735,7 +746,7 @@

                        -
                        +
                        Full Usage: DSL.opt elem @@ -763,50 +774,49 @@

                        -
                        - - - - - - -

                        - - Transforms any given missing element to an optional. - -

                        -
                        -
                        -
                        - - elem - - : - SheetEntity<'T list> -
                        -
                        -
                        -
                        -
                        - - Returns: - - SheetEntity<'T list> -
                        -
                        -
                        +
                        + +
                        + + + + + +

                        + Transforms any given missing element to an optional. +

                        +
                        +
                        +
                        +
                        + + elem + + : + SheetEntity<'T list> +
                        +
                        +
                        +
                        +
                        + + Returns: + + SheetEntity<'T list> +
                        +
                        +
                        +
                        - +

                        @@ -815,7 +825,7 @@

                        -
                        +
                        Full Usage: DSL.row @@ -834,40 +844,39 @@

                        -
                        - - - - - - -

                        - - Create a row from cells - -

                        -
                        -
                        -
                        - - Returns: - - RowBuilder -
                        -
                        -
                        +
                        + +
                        + + + + + +

                        + Create a row from cells +

                        +
                        +
                        +
                        +
                        + + Returns: + + RowBuilder +
                        +
                        +
                        +
                        - +

                        @@ -876,7 +885,7 @@

                        -
                        +
                        Full Usage: DSL.sheet name @@ -907,50 +916,49 @@

                        -
                        - - - - - - -

                        - - Create a sheet from rows, tables and columns - -

                        -
                        -
                        -
                        - - name - - : - string -
                        -
                        -
                        -
                        -
                        - - Returns: - - SheetBuilder -
                        -
                        -
                        +
                        + +
                        + + + + + +

                        + Create a sheet from rows, tables and columns +

                        +
                        +
                        +
                        +
                        + + name + + : + string +
                        +
                        +
                        +
                        +
                        + + Returns: + + SheetBuilder +
                        +
                        +
                        +
                        - +

                        @@ -959,7 +967,7 @@

                        -
                        +
                        Full Usage: DSL.table name @@ -990,50 +998,49 @@

                        -
                        - - - - - - -

                        - - Create a table from either exclusively rows or exclusively columns. - -

                        -
                        -
                        -
                        - - name - - : - string -
                        -
                        -
                        -
                        -
                        - - Returns: - - TableBuilder -
                        -
                        -
                        +
                        + +
                        + + + + + +

                        + Create a table from either exclusively rows or exclusively columns. +

                        +
                        +
                        +
                        +
                        + + name + + : + string +
                        +
                        +
                        +
                        +
                        + + Returns: + + TableBuilder +
                        +
                        +
                        +
                        - +

                        @@ -1042,7 +1049,7 @@

                        -
                        +
                        Full Usage: DSL.workbook @@ -1061,53 +1068,57 @@

                        -
                        - - - - - - -

                        - - Create a workbook from sheets - -

                        -
                        -
                        -
                        - - Returns: - - WorkbookBuilder -
                        -
                        -
                        +
                        + +
                        + + + + + +

                        + Create a workbook from sheets +

                        +
                        +
                        +
                        +
                        + + Returns: + + WorkbookBuilder +
                        +
                        +
                        +
                        -

                        -
                        -

                        +

                        + + + +
                        +
                          +

                          Type something to start searching.

                          +
                          +
                          + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-dsl-expression-expressionsource-1.html b/reference/fsspreadsheet-dsl-expression-expressionsource-1.html index 81a0efff..00f31a4f 100644 --- a/reference/fsspreadsheet-dsl-expression-expressionsource-1.html +++ b/reference/fsspreadsheet-dsl-expression-expressionsource-1.html @@ -1,62 +1,50 @@ - - + - - ExpressionSource<'T> (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                          -
                          - +
                          -
                          -
                          -
                          - +
                          + + + + + +
                          + + +
                          +
                          +

                          ExpressionSource<'T> Type

                          @@ -128,7 +147,7 @@

                          - +

                          @@ -137,7 +156,7 @@

                          -
                          +
                          Full Usage: ExpressionSource(s) @@ -165,23 +184,6 @@

                          -
                          - - - - - - -

                          - -

                          -
                          @@ -225,7 +227,7 @@

                          - +

                          @@ -234,7 +236,7 @@

                          -
                          +
                          Full Usage: this.Source @@ -250,23 +252,6 @@

                          -
                          - - - - - - -

                          - -

                          -
                          @@ -283,19 +268,24 @@

                          -

                          -

                          -

                          +

                          + + + +
                          +
                            +

                            Type something to start searching.

                            +
                            +
                            + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-dsl-expression-optionalsource-1.html b/reference/fsspreadsheet-dsl-expression-optionalsource-1.html index 27b18310..ea36bdd3 100644 --- a/reference/fsspreadsheet-dsl-expression-optionalsource-1.html +++ b/reference/fsspreadsheet-dsl-expression-optionalsource-1.html @@ -1,62 +1,50 @@ - - + - - OptionalSource<'T> (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                            -
                            - +
                            -
                            -
                            -
                            - +
                            + + + + + +
                            + + +
                            +
                            +

                            OptionalSource<'T> Type

                            @@ -128,7 +147,7 @@

                            - +

                            @@ -137,7 +156,7 @@

                            -
                            +
                            Full Usage: OptionalSource(s) @@ -165,23 +184,6 @@

                            -
                            - - - - - - -

                            - -

                            -
                            @@ -225,7 +227,7 @@

                            - +

                            @@ -234,7 +236,7 @@

                            -
                            +
                            Full Usage: this.Source @@ -250,23 +252,6 @@

                            -
                            - - - - - - -

                            - -

                            -
                            @@ -283,19 +268,24 @@

                            -

                            -

                            -

                            +

                            + + + +
                            +
                              +

                              Type something to start searching.

                              +
                              +
                              + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-dsl-expression-requiredsource-1.html b/reference/fsspreadsheet-dsl-expression-requiredsource-1.html index 55f85e3a..75007236 100644 --- a/reference/fsspreadsheet-dsl-expression-requiredsource-1.html +++ b/reference/fsspreadsheet-dsl-expression-requiredsource-1.html @@ -1,62 +1,50 @@ - - + - - RequiredSource<'T> (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                              -
                              - +
                              -
                              -
                              -
                              - +
                              + + + + + +
                              + + +
                              +
                              +

                              RequiredSource<'T> Type

                              @@ -128,7 +147,7 @@

                              - +

                              @@ -137,7 +156,7 @@

                              -
                              +
                              Full Usage: RequiredSource(s) @@ -165,23 +184,6 @@

                              -
                              - - - - - - -

                              - -

                              -
                              @@ -225,7 +227,7 @@

                              - +

                              @@ -234,7 +236,7 @@

                              -
                              +
                              Full Usage: this.Source @@ -250,23 +252,6 @@

                              -
                              - - - - - - -

                              - -

                              -
                              @@ -283,19 +268,24 @@

                              -

                              -

                              -

                              +

                              + + + +
                              +
                                +

                                Type something to start searching.

                                +
                                +
                                + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-dsl-expression.html b/reference/fsspreadsheet-dsl-expression.html index fec676aa..dcefa084 100644 --- a/reference/fsspreadsheet-dsl-expression.html +++ b/reference/fsspreadsheet-dsl-expression.html @@ -1,62 +1,50 @@ - - + - - Expression (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                -
                                - +
                                -
                                -
                                -
                                - +
                                + + + + + +
                                + + +
                                +
                                +

                                Expression Module

                                @@ -122,16 +141,13 @@

                                - - +

                                @@ -152,16 +168,13 @@

                                - - +

                                @@ -182,16 +195,13 @@

                                - - +

                                @@ -258,23 +268,6 @@

                                -
                                - - - - - - -

                                - -

                                -
                                @@ -308,19 +301,24 @@

                                -

                                -

                                -
                                + + + + +
                                +
                                  +

                                  Type something to start searching.

                                  +
                                  +
                                  + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-dsl-message.html b/reference/fsspreadsheet-dsl-message.html index 36a8c576..f9b0adac 100644 --- a/reference/fsspreadsheet-dsl-message.html +++ b/reference/fsspreadsheet-dsl-message.html @@ -1,62 +1,50 @@ - - + - - Message (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                  -
                                  - +
                                  -
                                  -
                                  -
                                  - +
                                  + + + + + +
                                  + + +
                                  +
                                  +

                                  Message Type

                                  @@ -91,9 +110,9 @@

                                  All Interfaces: - IEquatable<Message> + IEquatable<Message> , - IStructuralEquatable + IStructuralEquatable
                                  @@ -125,7 +144,7 @@

                                  - +

                                  @@ -134,7 +153,7 @@

                                  -
                                  +
                                  Full Usage: Exception exn @@ -157,15 +176,6 @@

                                  -
                                  - - - - -

                                  - -

                                  -
                                  @@ -181,7 +191,7 @@

                                  - +

                                  @@ -190,7 +200,7 @@

                                  -
                                  +
                                  Full Usage: Text string @@ -213,15 +223,6 @@

                                  -
                                  - - - - -

                                  - -

                                  -
                                  @@ -259,7 +260,7 @@

                                  - +

                                  @@ -268,7 +269,7 @@

                                  -
                                  +
                                  Full Usage: this.AsString @@ -284,23 +285,6 @@

                                  -
                                  - - - - - - -

                                  - -

                                  -
                                  @@ -315,7 +299,7 @@

                                  - +

                                  @@ -324,7 +308,7 @@

                                  -
                                  +
                                  Full Usage: this.IsExc @@ -340,23 +324,6 @@

                                  -
                                  - - - - - - -

                                  - -

                                  -
                                  @@ -371,7 +338,7 @@

                                  - +

                                  @@ -380,7 +347,7 @@

                                  -
                                  +
                                  Full Usage: this.IsTxt @@ -396,23 +363,6 @@

                                  -
                                  - - - - - - -

                                  - -

                                  -
                                  @@ -427,7 +377,7 @@

                                  - +

                                  @@ -436,7 +386,7 @@

                                  -
                                  +
                                  Full Usage: this.MapText @@ -464,23 +414,6 @@

                                  -
                                  - - - - - - -

                                  - -

                                  -
                                  @@ -505,7 +438,7 @@

                                  - +

                                  @@ -514,7 +447,7 @@

                                  -
                                  +
                                  Full Usage: this.TryException @@ -530,23 +463,6 @@

                                  -
                                  - - - - - - -

                                  - -

                                  -
                                  @@ -561,7 +477,7 @@

                                  - +

                                  @@ -570,7 +486,7 @@

                                  -
                                  +
                                  Full Usage: this.TryText @@ -586,23 +502,6 @@

                                  -
                                  - - - - - - -

                                  - -

                                  -
                                  @@ -636,7 +535,7 @@

                                  - +

                                  @@ -645,7 +544,7 @@

                                  -
                                  +
                                  Full Usage: Message.message e @@ -673,23 +572,6 @@

                                  -
                                  - - - - - - -

                                  - -

                                  -
                                  @@ -714,7 +596,7 @@

                                  - +

                                  @@ -723,7 +605,7 @@

                                  -
                                  +
                                  Full Usage: Message.message s @@ -751,23 +633,6 @@

                                  -
                                  - - - - - - -

                                  - -

                                  -
                                  @@ -793,19 +658,24 @@

                                  -

                                  -

                                  -

                                  +

                                  + + + +
                                  +
                                    +

                                    Type something to start searching.

                                    +
                                    +
                                    + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-dsl-messages.html b/reference/fsspreadsheet-dsl-messages.html index 06f92468..c28a9f77 100644 --- a/reference/fsspreadsheet-dsl-messages.html +++ b/reference/fsspreadsheet-dsl-messages.html @@ -1,62 +1,50 @@ - - + - - Messages (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                    -
                                    - +
                                    -
                                    -
                                    -
                                    - +
                                    + + + + + +
                                    + + +
                                    +
                                    +

                                    Messages Module

                                    @@ -149,23 +168,6 @@

                                    -
                                    - - - - - - -

                                    - -

                                    -
                                    @@ -227,23 +229,6 @@

                                    -
                                    - - - - - - -

                                    - -

                                    -
                                    @@ -277,19 +262,24 @@

                                    -
                                    -
                                    -
                                    + + + + +
                                    +
                                      +

                                      Type something to start searching.

                                      +
                                      +
                                      + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-dsl-operators.html b/reference/fsspreadsheet-dsl-operators.html index c8170a1b..d8b3a7d8 100644 --- a/reference/fsspreadsheet-dsl-operators.html +++ b/reference/fsspreadsheet-dsl-operators.html @@ -1,62 +1,50 @@ - - + - - Operators (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                      -
                                      - +
                                      -
                                      -
                                      -
                                      - +
                                      + + + + + +
                                      + + +
                                      +
                                      +

                                      Operators Module

                                      @@ -162,54 +181,53 @@

                                      -
                                      - - - - - - -

                                      - - Required value operator +

                                      + +
                                      + + + + + +

                                      + Required value operator If expression does fail, returns a missing required value - -

                                      -
                                      -
                                      -
                                      - - f - - : - 'T -> 'U -
                                      -
                                      -
                                      - - v - - : - 'T -
                                      -
                                      -
                                      -
                                      -
                                      - - Returns: - - SheetEntity<Value> -
                                      -
                                      -
                                      +

                                      +
                                      + +
                                      +
                                      + + f + + : + 'T -> 'U +
                                      +
                                      +
                                      + + v + + : + 'T +
                                      +
                                      +
                                      +
                                      +
                                      + + Returns: + + SheetEntity<Value> +
                                      +
                                      +
                                      + @@ -265,54 +283,53 @@

                                      -
                                      - - - - - - -

                                      - - Optional value operator +

                                      + +
                                      + + + + + +

                                      + Optional value operator If expression does fail, returns a missing optional value - -

                                      -
                                      -
                                      -
                                      - - f - - : - 'T -> 'U -
                                      -
                                      -
                                      - - v - - : - 'T -
                                      -
                                      -
                                      -
                                      -
                                      - - Returns: - - SheetEntity<Value> -
                                      -
                                      -
                                      +

                                      +
                                      + +
                                      +
                                      + + f + + : + 'T -> 'U +
                                      +
                                      +
                                      + + v + + : + 'T +
                                      +
                                      +
                                      +
                                      +
                                      + + Returns: + + SheetEntity<Value> +
                                      +
                                      +
                                      + @@ -360,46 +377,45 @@

                                      -
                                      - - - - - - -

                                      - - Required value operator +

                                      + +
                                      + + + + + +

                                      + Required value operator If expression does fail, returns a missing required value - -

                                      -
                                      -
                                      -
                                      - - v - - : - 'T -
                                      -
                                      -
                                      -
                                      -
                                      - - Returns: - - SheetEntity<Value> -
                                      -
                                      -
                                      +

                                      +
                                      + +
                                      +
                                      + + v + + : + 'T +
                                      +
                                      +
                                      +
                                      +
                                      + + Returns: + + SheetEntity<Value> +
                                      +
                                      +
                                      + @@ -447,46 +463,45 @@

                                      -
                                      - - - - - - -

                                      - - Optional value operator +

                                      + +
                                      + + + + + +

                                      + Optional value operator If expression does fail, returns a missing optional value - -

                                      -
                                      -
                                      -
                                      - - v - - : - 'T -
                                      -
                                      -
                                      -
                                      -
                                      - - Returns: - - SheetEntity<Value> -
                                      -
                                      -
                                      +

                                      +
                                      + +
                                      +
                                      + + v + + : + 'T +
                                      +
                                      +
                                      +
                                      +
                                      + + Returns: + + SheetEntity<Value> +
                                      +
                                      +
                                      + @@ -517,34 +532,33 @@

                                      -
                                      - - - - - - -

                                      - - Optional operators for cell, row, column and sheet expressions - -

                                      -
                                      -
                                      -
                                      - - Returns: - - OptionalSource<unit> -
                                      -
                                      -
                                      +
                                      + +
                                      + + + + + +

                                      + Optional operators for cell, row, column and sheet expressions +

                                      +
                                      +
                                      +
                                      +
                                      + + Returns: + + OptionalSource<unit> +
                                      +
                                      +
                                      +
                                      @@ -600,23 +614,6 @@

                                      -
                                      - - - - - - -

                                      - -

                                      -
                                      @@ -699,23 +696,6 @@

                                      -
                                      - - - - - - -

                                      - -

                                      -
                                      @@ -798,23 +778,6 @@

                                      -
                                      - - - - - - -

                                      - -

                                      -
                                      @@ -897,23 +860,6 @@

                                      -
                                      - - - - - - -

                                      - -

                                      -
                                      @@ -971,34 +917,33 @@

                                      -
                                      - - - - - - -

                                      - - Required operators for cell, row, column and sheet expressions - -

                                      -
                                      -
                                      -
                                      - - Returns: - - RequiredSource<unit> -
                                      -
                                      -
                                      +
                                      + +
                                      + + + + + +

                                      + Required operators for cell, row, column and sheet expressions +

                                      +
                                      +
                                      +
                                      +
                                      + + Returns: + + RequiredSource<unit> +
                                      +
                                      +
                                      +
                                      @@ -1013,19 +958,24 @@

                                      -
                                      -
                                      -
                                      + + + + +
                                      +
                                        +

                                        Type something to start searching.

                                        +
                                        +
                                        + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-dsl-reduceoperation.html b/reference/fsspreadsheet-dsl-reduceoperation.html index 719f46eb..73b341db 100644 --- a/reference/fsspreadsheet-dsl-reduceoperation.html +++ b/reference/fsspreadsheet-dsl-reduceoperation.html @@ -1,62 +1,50 @@ - - + - - ReduceOperation (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                        -
                                        - +
                                        -
                                        -
                                        -
                                        - +
                                        + + + + + +
                                        + + +
                                        +
                                        +

                                        ReduceOperation Type

                                        @@ -91,15 +110,15 @@

                                        All Interfaces: - IEquatable<ReduceOperation> + IEquatable<ReduceOperation> , - IStructuralEquatable + IStructuralEquatable , - IComparable<ReduceOperation> + IComparable<ReduceOperation> , - IComparable + IComparable , - IStructuralComparable + IStructuralComparable
                                        @@ -131,7 +150,7 @@

                                        - +

                                        @@ -140,7 +159,7 @@

                                        -
                                        +
                                        Full Usage: Concat char @@ -163,15 +182,6 @@

                                        -
                                        - - - - -

                                        - -

                                        -
                                        @@ -209,7 +219,7 @@

                                        - +

                                        @@ -218,7 +228,7 @@

                                        -
                                        +
                                        Full Usage: this.Reduce @@ -246,23 +256,6 @@

                                        -
                                        - - - - - - -

                                        - -

                                        -
                                        @@ -289,19 +282,24 @@

                                        -

                                        -

                                        -

                                        +

                                        + + + +
                                        +
                                          +

                                          Type something to start searching.

                                          +
                                          +
                                          + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-dsl-rowbuilder.html b/reference/fsspreadsheet-dsl-rowbuilder.html index 6f1a25ae..f9415f0f 100644 --- a/reference/fsspreadsheet-dsl-rowbuilder.html +++ b/reference/fsspreadsheet-dsl-rowbuilder.html @@ -1,62 +1,50 @@ - - + - - RowBuilder (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                          -
                                          - +
                                          -
                                          -
                                          -
                                          - +
                                          + + + + + +
                                          + + +
                                          +
                                          +

                                          RowBuilder Type

                                          @@ -122,7 +141,7 @@

                                          - +

                                          @@ -131,7 +150,7 @@

                                          -
                                          +
                                          Full Usage: RowBuilder() @@ -147,23 +166,6 @@

                                          -
                                          - - - - - - -

                                          - -

                                          -
                                          @@ -197,7 +199,7 @@

                                          - +

                                          @@ -206,7 +208,7 @@

                                          -
                                          +
                                          Full Usage: this.Combine @@ -242,23 +244,6 @@

                                          -
                                          - - - - - - -

                                          - -

                                          -
                                          @@ -291,7 +276,7 @@

                                          - +

                                          @@ -300,7 +285,7 @@

                                          -
                                          +
                                          Full Usage: this.Combine @@ -336,23 +321,6 @@

                                          -
                                          - - - - - - -

                                          - -

                                          -
                                          @@ -385,7 +353,7 @@

                                          - +

                                          @@ -394,7 +362,7 @@

                                          -
                                          +
                                          Full Usage: this.Combine @@ -430,23 +398,6 @@

                                          -
                                          - - - - - - -

                                          - -

                                          -
                                          @@ -479,7 +430,7 @@

                                          - +

                                          @@ -488,7 +439,7 @@

                                          -
                                          +
                                          Full Usage: this.Combine @@ -524,23 +475,6 @@

                                          -
                                          - - - - - - -

                                          - -

                                          -
                                          @@ -573,7 +507,7 @@

                                          - +

                                          @@ -582,7 +516,7 @@

                                          -
                                          +
                                          Full Usage: this.Combine @@ -618,23 +552,6 @@

                                          -
                                          - - - - - - -

                                          - -

                                          -
                                          @@ -667,7 +584,7 @@

                                          - +

                                          @@ -676,7 +593,7 @@

                                          -
                                          +
                                          Full Usage: this.Combine @@ -712,23 +629,6 @@

                                          -
                                          - - - - - - -

                                          - -

                                          -
                                          @@ -761,7 +661,7 @@

                                          - +

                                          @@ -770,7 +670,7 @@

                                          -
                                          +
                                          Full Usage: this.Combine @@ -806,23 +706,6 @@

                                          -
                                          - - - - - - -

                                          - -

                                          -
                                          @@ -855,7 +738,7 @@

                                          - +

                                          @@ -864,7 +747,7 @@

                                          -
                                          +
                                          Full Usage: this.Combine @@ -900,23 +783,6 @@

                                          -
                                          - - - - - - -

                                          - -

                                          -
                                          @@ -949,7 +815,7 @@

                                          - +

                                          @@ -958,7 +824,7 @@

                                          -
                                          +
                                          Full Usage: this.Combine @@ -994,23 +860,6 @@

                                          -
                                          - - - - - - -

                                          - -

                                          -
                                          @@ -1043,7 +892,7 @@

                                          - +

                                          @@ -1052,7 +901,7 @@

                                          -
                                          +
                                          Full Usage: this.Delay @@ -1085,23 +934,6 @@

                                          -
                                          - - - - - - -

                                          - -

                                          -
                                          @@ -1126,7 +958,7 @@

                                          - +

                                          @@ -1135,7 +967,7 @@

                                          -
                                          +
                                          Full Usage: this.For @@ -1148,7 +980,7 @@

                                          vs : - seq<'T> + 'T seq
                                          @@ -1176,30 +1008,13 @@

                                          -
                                          - - - - - - -

                                          - -

                                          -
                                          vs : - seq<'T> + 'T seq
                                          @@ -1225,7 +1040,7 @@

                                          - +

                                          @@ -1234,7 +1049,7 @@

                                          -
                                          +
                                          Full Usage: this.Quote @@ -1262,23 +1077,6 @@

                                          -
                                          - - - - - - -

                                          - -

                                          -
                                          @@ -1303,7 +1101,7 @@

                                          - +

                                          @@ -1312,7 +1110,7 @@

                                          -
                                          +
                                          Full Usage: this.Run @@ -1343,23 +1141,6 @@

                                          -
                                          - - - - - - -

                                          - -

                                          -
                                          @@ -1384,7 +1165,7 @@

                                          - +

                                          @@ -1393,7 +1174,7 @@

                                          -
                                          +
                                          Full Usage: this.Run @@ -1424,23 +1205,6 @@

                                          -
                                          - - - - - - -

                                          - -

                                          -
                                          @@ -1465,7 +1229,7 @@

                                          - +

                                          @@ -1474,7 +1238,7 @@

                                          -
                                          +
                                          Full Usage: this.Run @@ -1505,23 +1269,6 @@

                                          -
                                          - - - - - - -

                                          - -

                                          -
                                          @@ -1546,7 +1293,7 @@

                                          - +

                                          @@ -1555,7 +1302,7 @@

                                          -
                                          +
                                          Full Usage: this.SignMessages @@ -1583,23 +1330,6 @@

                                          -
                                          - - - - - - -

                                          - -

                                          -
                                          @@ -1624,7 +1354,7 @@

                                          - +

                                          @@ -1633,7 +1363,7 @@

                                          -
                                          +
                                          Full Usage: this.Yield @@ -1664,23 +1394,6 @@

                                          -
                                          - - - - - - -

                                          - -

                                          -
                                          @@ -1705,7 +1418,7 @@

                                          - +

                                          @@ -1714,7 +1427,7 @@

                                          -
                                          +
                                          Full Usage: this.Yield @@ -1747,23 +1460,6 @@

                                          -
                                          - - - - - - -

                                          - -

                                          -
                                          @@ -1788,7 +1484,7 @@

                                          - +

                                          @@ -1797,7 +1493,7 @@

                                          -
                                          +
                                          Full Usage: this.Yield @@ -1828,23 +1524,6 @@

                                          -
                                          - - - - - - -

                                          - -

                                          -
                                          @@ -1869,7 +1548,7 @@

                                          - +

                                          @@ -1878,7 +1557,7 @@

                                          -
                                          +
                                          Full Usage: this.Yield @@ -1891,7 +1570,7 @@

                                          cs : - seq<SheetEntity<CellElement>> + SheetEntity<CellElement> seq
                                          @@ -1909,30 +1588,13 @@

                                          -
                                          - - - - - - -

                                          - -

                                          -
                                          cs : - seq<SheetEntity<CellElement>> + SheetEntity<CellElement> seq
                                          @@ -1950,7 +1612,7 @@

                                          - +

                                          @@ -1959,7 +1621,7 @@

                                          -
                                          +
                                          Full Usage: this.Yield @@ -1990,23 +1652,6 @@

                                          -
                                          - - - - - - -

                                          - -

                                          -
                                          @@ -2031,7 +1676,7 @@

                                          - +

                                          @@ -2040,7 +1685,7 @@

                                          -
                                          +
                                          Full Usage: this.Yield @@ -2071,23 +1716,6 @@

                                          -
                                          - - - - - - -

                                          - -

                                          -
                                          @@ -2112,7 +1740,7 @@

                                          - +

                                          @@ -2121,7 +1749,7 @@

                                          -
                                          +
                                          Full Usage: this.Yield @@ -2152,23 +1780,6 @@

                                          -
                                          - - - - - - -

                                          - -

                                          -
                                          @@ -2193,7 +1804,7 @@

                                          - +

                                          @@ -2202,7 +1813,7 @@

                                          -
                                          +
                                          Full Usage: this.Yield @@ -2233,23 +1844,6 @@

                                          -
                                          - - - - - - -

                                          - -

                                          -
                                          @@ -2274,7 +1868,7 @@

                                          - +

                                          @@ -2283,7 +1877,7 @@

                                          -
                                          +
                                          Full Usage: this.Yield @@ -2314,23 +1908,6 @@

                                          -
                                          - - - - - - -

                                          - -

                                          -
                                          @@ -2355,7 +1932,7 @@

                                          - +

                                          @@ -2364,7 +1941,7 @@

                                          -
                                          +
                                          Full Usage: this.Yield @@ -2395,23 +1972,6 @@

                                          -
                                          - - - - - - -

                                          - -

                                          -
                                          @@ -2436,7 +1996,7 @@

                                          - +

                                          @@ -2445,7 +2005,7 @@

                                          -
                                          +
                                          Full Usage: this.Yield @@ -2476,23 +2036,6 @@

                                          -
                                          - - - - - - -

                                          - -

                                          -
                                          @@ -2517,7 +2060,7 @@

                                          - +

                                          @@ -2526,7 +2069,7 @@

                                          -
                                          +
                                          Full Usage: this.Yield @@ -2557,23 +2100,6 @@

                                          -
                                          - - - - - - -

                                          - -

                                          -
                                          @@ -2598,7 +2124,7 @@

                                          - +

                                          @@ -2607,7 +2133,7 @@

                                          -
                                          +
                                          Full Usage: this.Yield @@ -2638,23 +2164,6 @@

                                          -
                                          - - - - - - -

                                          - -

                                          -
                                          @@ -2679,7 +2188,7 @@

                                          - +

                                          @@ -2688,7 +2197,7 @@

                                          -
                                          +
                                          Full Usage: this.YieldFrom @@ -2701,7 +2210,7 @@

                                          ns : - seq<SheetEntity<RowElement list>> + SheetEntity<RowElement list> seq
                                          @@ -2719,30 +2228,13 @@

                                          -
                                          - - - - - - -

                                          - -

                                          -
                                          ns : - seq<SheetEntity<RowElement list>> + SheetEntity<RowElement list> seq
                                          @@ -2760,7 +2252,7 @@

                                          - +

                                          @@ -2769,7 +2261,7 @@

                                          -
                                          +
                                          Full Usage: this.Zero @@ -2788,23 +2280,6 @@

                                          -
                                          - - - - - - -

                                          - -

                                          -
                                          @@ -2838,7 +2313,7 @@

                                          - +

                                          @@ -2847,7 +2322,7 @@

                                          -
                                          +
                                          Full Usage: RowBuilder.Empty @@ -2863,23 +2338,6 @@

                                          -
                                          - - - - - - -

                                          - -

                                          -
                                          @@ -2895,19 +2353,24 @@

                                          -

                                          -

                                          -

                                          +

                                          + + + +
                                          +
                                            +

                                            Type something to start searching.

                                            +
                                            +
                                            + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-dsl-rowelement.html b/reference/fsspreadsheet-dsl-rowelement.html index bc021c6e..00086737 100644 --- a/reference/fsspreadsheet-dsl-rowelement.html +++ b/reference/fsspreadsheet-dsl-rowelement.html @@ -1,62 +1,50 @@ - - + - - RowElement (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                            -
                                            - +
                                            -
                                            -
                                            -
                                            - +
                                            + + + + + +
                                            + + +
                                            +
                                            +

                                            RowElement Type

                                            @@ -91,9 +110,9 @@

                                            All Interfaces: - IEquatable<RowElement> + IEquatable<RowElement> , - IStructuralEquatable + IStructuralEquatable
                                            @@ -125,7 +144,7 @@

                                            - +

                                            @@ -134,7 +153,7 @@

                                            -
                                            +
                                            Full Usage: IndexedCell(ColumnIndex, Value) @@ -165,15 +184,6 @@

                                            -
                                            - - - - -

                                            - -

                                            -
                                            @@ -197,7 +207,7 @@

                                            - +

                                            @@ -206,7 +216,7 @@

                                            -
                                            +
                                            Full Usage: UnindexedCell Value @@ -229,15 +239,6 @@

                                            -
                                            - - - - -

                                            - -

                                            -
                                            @@ -259,19 +260,24 @@

                                            -
                                            -

                                            -

                                            +

                                            + + + +
                                            +
                                              +

                                              Type something to start searching.

                                              +
                                              +
                                              + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-dsl-rowindex.html b/reference/fsspreadsheet-dsl-rowindex.html index 117a9208..4059b963 100644 --- a/reference/fsspreadsheet-dsl-rowindex.html +++ b/reference/fsspreadsheet-dsl-rowindex.html @@ -1,62 +1,50 @@ - - + - - RowIndex (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                              -
                                              - +
                                              -
                                              -
                                              -
                                              - +
                                              + + + + + +
                                              + + +
                                              +
                                              +

                                              RowIndex Type

                                              @@ -91,15 +110,15 @@

                                              All Interfaces: - IEquatable<RowIndex> + IEquatable<RowIndex> , - IStructuralEquatable + IStructuralEquatable , - IComparable<RowIndex> + IComparable<RowIndex> , - IComparable + IComparable , - IStructuralComparable + IStructuralComparable
                                              @@ -131,7 +150,7 @@

                                              - +

                                              @@ -140,7 +159,7 @@

                                              -
                                              +
                                              Full Usage: Row int @@ -163,15 +182,6 @@

                                              -
                                              - - - - -

                                              - -

                                              -
                                              @@ -209,7 +219,7 @@

                                              - +

                                              @@ -218,7 +228,7 @@

                                              -
                                              +
                                              Full Usage: this.Index @@ -234,23 +244,6 @@

                                              -
                                              - - - - - - -

                                              - -

                                              -
                                              @@ -267,19 +260,24 @@

                                              -

                                              -

                                              -

                                              +

                                              + + + +
                                              +
                                                +

                                                Type something to start searching.

                                                +
                                                +
                                                + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-dsl-sheetbuilder.html b/reference/fsspreadsheet-dsl-sheetbuilder.html index cc7af66f..fef5aeeb 100644 --- a/reference/fsspreadsheet-dsl-sheetbuilder.html +++ b/reference/fsspreadsheet-dsl-sheetbuilder.html @@ -1,62 +1,50 @@ - - + - - SheetBuilder (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                -
                                                - +
                                                -
                                                -
                                                -
                                                - +
                                                + + + + + +
                                                + + +
                                                +
                                                +

                                                SheetBuilder Type

                                                @@ -122,7 +141,7 @@

                                                - +

                                                @@ -131,7 +150,7 @@

                                                -
                                                +
                                                Full Usage: SheetBuilder(name) @@ -159,23 +178,6 @@

                                                -
                                                - - - - - - -

                                                - -

                                                -
                                                @@ -219,7 +221,7 @@

                                                - +

                                                @@ -228,7 +230,7 @@

                                                -
                                                +
                                                Full Usage: this.Combine @@ -264,23 +266,6 @@

                                                -
                                                - - - - - - -

                                                - -

                                                -
                                                @@ -313,7 +298,7 @@

                                                - +

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

                                                -
                                                +
                                                Full Usage: this.Delay @@ -353,23 +338,6 @@

                                                -
                                                - - - - - - -

                                                - -

                                                -
                                                @@ -394,7 +362,7 @@

                                                - +

                                                @@ -403,7 +371,7 @@

                                                -
                                                +
                                                Full Usage: this.For @@ -416,7 +384,7 @@

                                                vs : - seq<'T> + 'T seq
                                                @@ -444,30 +412,13 @@

                                                -
                                                - - - - - - -

                                                - -

                                                -
                                                vs : - seq<'T> + 'T seq
                                                @@ -493,7 +444,7 @@

                                                - +

                                                @@ -502,7 +453,7 @@

                                                -
                                                +
                                                Full Usage: this.Run @@ -530,23 +481,6 @@

                                                -
                                                - - - - - - -

                                                - -

                                                -
                                                @@ -571,7 +505,7 @@

                                                - +

                                                @@ -580,7 +514,7 @@

                                                -
                                                +
                                                Full Usage: this.SignMessages @@ -608,23 +542,6 @@

                                                -
                                                - - - - - - -

                                                - -

                                                -
                                                @@ -649,7 +566,7 @@

                                                - +

                                                @@ -658,7 +575,7 @@

                                                -
                                                +
                                                Full Usage: this.Yield @@ -689,23 +606,6 @@

                                                -
                                                - - - - - - -

                                                - -

                                                -
                                                @@ -730,7 +630,7 @@

                                                - +

                                                @@ -739,7 +639,7 @@

                                                -
                                                +
                                                Full Usage: this.Yield @@ -770,23 +670,6 @@

                                                -
                                                - - - - - - -

                                                - -

                                                -
                                                @@ -811,7 +694,7 @@

                                                - +

                                                @@ -820,7 +703,7 @@

                                                -
                                                +
                                                Full Usage: this.Yield @@ -851,23 +734,6 @@

                                                -
                                                - - - - - - -

                                                - -

                                                -
                                                @@ -892,7 +758,7 @@

                                                - +

                                                @@ -901,7 +767,7 @@

                                                -
                                                +
                                                Full Usage: this.Yield @@ -932,23 +798,6 @@

                                                -
                                                - - - - - - -

                                                - -

                                                -
                                                @@ -973,7 +822,7 @@

                                                - +

                                                @@ -982,7 +831,7 @@

                                                -
                                                +
                                                Full Usage: this.Yield @@ -1013,23 +862,6 @@

                                                -
                                                - - - - - - -

                                                - -

                                                -
                                                @@ -1054,7 +886,7 @@

                                                - +

                                                @@ -1063,7 +895,7 @@

                                                -
                                                +
                                                Full Usage: this.Yield @@ -1094,23 +926,6 @@

                                                -
                                                - - - - - - -

                                                - -

                                                -
                                                @@ -1135,7 +950,7 @@

                                                - +

                                                @@ -1144,7 +959,7 @@

                                                -
                                                +
                                                Full Usage: this.Yield @@ -1175,23 +990,6 @@

                                                -
                                                - - - - - - -

                                                - -

                                                -
                                                @@ -1216,7 +1014,7 @@

                                                - +

                                                @@ -1225,7 +1023,7 @@

                                                -
                                                +
                                                Full Usage: this.Yield @@ -1256,23 +1054,6 @@

                                                -
                                                - - - - - - -

                                                - -

                                                -
                                                @@ -1297,7 +1078,7 @@

                                                - +

                                                @@ -1306,7 +1087,7 @@

                                                -
                                                +
                                                Full Usage: this.Yield @@ -1319,7 +1100,7 @@

                                                c : - seq<SheetEntity<RowElement list>> + SheetEntity<RowElement list> seq
                                                @@ -1337,30 +1118,13 @@

                                                -
                                                - - - - - - -

                                                - -

                                                -
                                                c : - seq<SheetEntity<RowElement list>> + SheetEntity<RowElement list> seq
                                                @@ -1378,7 +1142,7 @@

                                                - +

                                                @@ -1387,7 +1151,7 @@

                                                -
                                                +
                                                Full Usage: this.Yield @@ -1418,23 +1182,6 @@

                                                -
                                                - - - - - - -

                                                - -

                                                -
                                                @@ -1459,7 +1206,7 @@

                                                - +

                                                @@ -1468,7 +1215,7 @@

                                                -
                                                +
                                                Full Usage: this.Yield @@ -1499,23 +1246,6 @@

                                                -
                                                - - - - - - -

                                                - -

                                                -
                                                @@ -1540,7 +1270,7 @@

                                                - +

                                                @@ -1549,7 +1279,7 @@

                                                -
                                                +
                                                Full Usage: this.Yield @@ -1580,23 +1310,6 @@

                                                -
                                                - - - - - - -

                                                - -

                                                -
                                                @@ -1621,7 +1334,7 @@

                                                - +

                                                @@ -1630,7 +1343,7 @@

                                                -
                                                +
                                                Full Usage: this.Yield @@ -1661,23 +1374,6 @@

                                                -
                                                - - - - - - -

                                                - -

                                                -
                                                @@ -1702,7 +1398,7 @@

                                                - +

                                                @@ -1711,7 +1407,7 @@

                                                -
                                                +
                                                Full Usage: this.Yield @@ -1742,23 +1438,6 @@

                                                -
                                                - - - - - - -

                                                - -

                                                -
                                                @@ -1783,7 +1462,7 @@

                                                - +

                                                @@ -1792,7 +1471,7 @@

                                                -
                                                +
                                                Full Usage: this.YieldFrom @@ -1805,7 +1484,7 @@

                                                ns : - seq<SheetEntity<SheetElement list>> + SheetEntity<SheetElement list> seq
                                                @@ -1823,30 +1502,13 @@

                                                -
                                                - - - - - - -

                                                - -

                                                -
                                                ns : - seq<SheetEntity<SheetElement list>> + SheetEntity<SheetElement list> seq
                                                @@ -1864,7 +1526,7 @@

                                                - +

                                                @@ -1873,7 +1535,7 @@

                                                -
                                                +
                                                Full Usage: this.Zero @@ -1892,23 +1554,6 @@

                                                -
                                                - - - - - - -

                                                - -

                                                -
                                                @@ -1942,7 +1587,7 @@

                                                - +

                                                @@ -1951,7 +1596,7 @@

                                                -
                                                +
                                                Full Usage: SheetBuilder.Empty @@ -1967,23 +1612,6 @@

                                                -
                                                - - - - - - -

                                                - -

                                                -
                                                @@ -1999,19 +1627,24 @@

                                                -

                                                -

                                                -

                                                +

                                                + + + +
                                                +
                                                  +

                                                  Type something to start searching.

                                                  +
                                                  +
                                                  + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-dsl-sheetelement.html b/reference/fsspreadsheet-dsl-sheetelement.html index 91f6649b..eabd3fe5 100644 --- a/reference/fsspreadsheet-dsl-sheetelement.html +++ b/reference/fsspreadsheet-dsl-sheetelement.html @@ -1,62 +1,50 @@ - - + - - SheetElement (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                  -
                                                  - +
                                                  -
                                                  -
                                                  -
                                                  - +
                                                  + + + + + +
                                                  + + +
                                                  +
                                                  +

                                                  SheetElement Type

                                                  @@ -91,9 +110,9 @@

                                                  All Interfaces: - IEquatable<SheetElement> + IEquatable<SheetElement> , - IStructuralEquatable + IStructuralEquatable
                                                  @@ -125,7 +144,7 @@

                                                  - +

                                                  @@ -134,7 +153,7 @@

                                                  -
                                                  +
                                                  Full Usage: IndexedCell(RowIndex, ColumnIndex, Value) @@ -173,15 +192,6 @@

                                                  -
                                                  - - - - -

                                                  - -

                                                  -
                                                  @@ -213,7 +223,7 @@

                                                  - +

                                                  @@ -222,7 +232,7 @@

                                                  -
                                                  +
                                                  Full Usage: IndexedColumn(ColumnIndex, ColumnElement list) @@ -253,15 +263,6 @@

                                                  -
                                                  - - - - -

                                                  - -

                                                  -
                                                  @@ -285,7 +286,7 @@

                                                  - +

                                                  @@ -294,7 +295,7 @@

                                                  -
                                                  +
                                                  Full Usage: IndexedRow(RowIndex, RowElement list) @@ -325,15 +326,6 @@

                                                  -
                                                  - - - - -

                                                  - -

                                                  -
                                                  @@ -357,7 +349,7 @@

                                                  - +

                                                  @@ -366,7 +358,7 @@

                                                  -
                                                  +
                                                  Full Usage: Table(string, TableElement list) @@ -397,15 +389,6 @@

                                                  -
                                                  - - - - -

                                                  - -

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

                                                  - +

                                                  @@ -438,7 +421,7 @@

                                                  -
                                                  +
                                                  Full Usage: UnindexedCell Value @@ -461,15 +444,6 @@

                                                  -
                                                  - - - - -

                                                  - -

                                                  -
                                                  @@ -485,7 +459,7 @@

                                                  - +

                                                  @@ -494,7 +468,7 @@

                                                  -
                                                  +
                                                  Full Usage: UnindexedColumn ColumnElement list @@ -517,15 +491,6 @@

                                                  -
                                                  - - - - -

                                                  - -

                                                  -
                                                  @@ -541,7 +506,7 @@

                                                  - +

                                                  @@ -550,7 +515,7 @@

                                                  -
                                                  +
                                                  Full Usage: UnindexedRow RowElement list @@ -573,15 +538,6 @@

                                                  -
                                                  - - - - -

                                                  - -

                                                  -
                                                  @@ -603,19 +559,24 @@

                                                  -
                                                  -

                                                  -

                                                  +

                                                  + + + +
                                                  +
                                                    +

                                                    Type something to start searching.

                                                    +
                                                    +
                                                    + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-dsl-sheetentity-1.html b/reference/fsspreadsheet-dsl-sheetentity-1.html index 6adc0101..9c9257d4 100644 --- a/reference/fsspreadsheet-dsl-sheetentity-1.html +++ b/reference/fsspreadsheet-dsl-sheetentity-1.html @@ -1,62 +1,50 @@ - - + - - SheetEntity<'T> (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                    -
                                                    - +
                                                    -
                                                    -
                                                    -
                                                    - +
                                                    + + + + + +
                                                    + + +
                                                    +
                                                    +

                                                    SheetEntity<'T> Type

                                                    @@ -91,9 +110,9 @@

                                                    All Interfaces: - IEquatable<SheetEntity<'T>> + IEquatable<SheetEntity<'T>> , - IStructuralEquatable + IStructuralEquatable
                                                    @@ -125,7 +144,7 @@

                                                    - +

                                                    @@ -134,7 +153,7 @@

                                                    -
                                                    +
                                                    Full Usage: NoneOptional Message list @@ -157,15 +176,6 @@

                                                    -
                                                    - - - - -

                                                    - -

                                                    -
                                                    @@ -181,7 +191,7 @@

                                                    - +

                                                    @@ -190,7 +200,7 @@

                                                    -
                                                    +
                                                    Full Usage: NoneRequired Message list @@ -213,15 +223,6 @@

                                                    -
                                                    - - - - -

                                                    - -

                                                    -
                                                    @@ -237,7 +238,7 @@

                                                    - +

                                                    @@ -246,7 +247,7 @@

                                                    -
                                                    +
                                                    Full Usage: Some('T, Message list) @@ -277,15 +278,6 @@

                                                    -
                                                    - - - - -

                                                    - -

                                                    -
                                                    @@ -331,7 +323,7 @@

                                                    - +

                                                    @@ -340,7 +332,7 @@

                                                    -
                                                    +
                                                    Full Usage: this.Messages @@ -356,34 +348,33 @@

                                                    -
                                                    - - - - - - -

                                                    - - Get messages - -

                                                    -
                                                    -
                                                    -
                                                    - - Returns: - - Message list -
                                                    -
                                                    -
                                                    +
                                                    + +
                                                    + + + + + +

                                                    + Get messages +

                                                    +
                                                    +
                                                    +
                                                    +
                                                    + + Returns: + + Message list +
                                                    +
                                                    +
                                                    +
                                                    @@ -408,7 +399,7 @@

                                                    - +

                                                    @@ -417,7 +408,7 @@

                                                    -
                                                    +
                                                    Full Usage: SheetEntity.some v @@ -445,23 +436,6 @@

                                                    -
                                                    - - - - - - -

                                                    - -

                                                    -
                                                    @@ -487,19 +461,24 @@

                                                    -

                                                    -

                                                    -

                                                    +

                                                    + + + +
                                                    +
                                                      +

                                                      Type something to start searching.

                                                      +
                                                      +
                                                      + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-dsl-sheetentityextensions.html b/reference/fsspreadsheet-dsl-sheetentityextensions.html index 9bc02a74..d9a44409 100644 --- a/reference/fsspreadsheet-dsl-sheetentityextensions.html +++ b/reference/fsspreadsheet-dsl-sheetentityextensions.html @@ -1,62 +1,50 @@ - - + - - SheetEntityExtensions (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                      -
                                                      - +
                                                      -
                                                      -
                                                      -
                                                      - +
                                                      + + + + + +
                                                      + + +
                                                      +
                                                      +

                                                      SheetEntityExtensions Module

                                                      @@ -153,23 +172,6 @@

                                                      -
                                                      - - - - - - -

                                                      - -

                                                      -

                                                      Extended Type: SheetEntity @@ -226,23 +228,6 @@

                                                      -
                                                      - - - - - - -

                                                      - -

                                                      -

                                                      Extended Type: SheetEntity @@ -269,19 +254,24 @@

                                                      -
                                                      -
                                                      -
                                                      + + + + +
                                                      +
                                                        +

                                                        Type something to start searching.

                                                        +
                                                        +
                                                        + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-dsl-tablebuilder.html b/reference/fsspreadsheet-dsl-tablebuilder.html index 7b920b3b..332adfbc 100644 --- a/reference/fsspreadsheet-dsl-tablebuilder.html +++ b/reference/fsspreadsheet-dsl-tablebuilder.html @@ -1,62 +1,50 @@ - - + - - TableBuilder (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                        -
                                                        - +
                                                        -
                                                        -
                                                        -
                                                        - +
                                                        + + + + + +
                                                        + + +
                                                        +
                                                        +

                                                        TableBuilder Type

                                                        @@ -122,7 +141,7 @@

                                                        - +

                                                        @@ -131,7 +150,7 @@

                                                        -
                                                        +
                                                        Full Usage: TableBuilder(name) @@ -159,23 +178,6 @@

                                                        -
                                                        - - - - - - -

                                                        - -

                                                        -
                                                        @@ -219,7 +221,7 @@

                                                        - +

                                                        @@ -228,7 +230,7 @@

                                                        -
                                                        +
                                                        Full Usage: this.Combine @@ -264,23 +266,6 @@

                                                        -
                                                        - - - - - - -

                                                        - -

                                                        -
                                                        @@ -313,7 +298,7 @@

                                                        - +

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

                                                        -
                                                        +
                                                        Full Usage: this.Delay @@ -353,23 +338,6 @@

                                                        -
                                                        - - - - - - -

                                                        - -

                                                        -
                                                        @@ -394,7 +362,7 @@

                                                        - +

                                                        @@ -403,7 +371,7 @@

                                                        -
                                                        +
                                                        Full Usage: this.For @@ -416,7 +384,7 @@

                                                        vs : - seq<'T> + 'T seq
                                                        @@ -444,30 +412,13 @@

                                                        -
                                                        - - - - - - -

                                                        - -

                                                        -
                                                        vs : - seq<'T> + 'T seq
                                                        @@ -493,7 +444,7 @@

                                                        - +

                                                        @@ -502,7 +453,7 @@

                                                        -
                                                        +
                                                        Full Usage: this.Name @@ -518,23 +469,6 @@

                                                        -
                                                        - - - - - - -

                                                        - -

                                                        -
                                                        @@ -549,7 +483,7 @@

                                                        - +

                                                        @@ -558,7 +492,7 @@

                                                        -
                                                        +
                                                        Full Usage: this.Run @@ -586,23 +520,6 @@

                                                        -
                                                        - - - - - - -

                                                        - -

                                                        -
                                                        @@ -627,7 +544,7 @@

                                                        - +

                                                        @@ -636,7 +553,7 @@

                                                        -
                                                        +
                                                        Full Usage: this.SignMessages @@ -664,23 +581,6 @@

                                                        -
                                                        - - - - - - -

                                                        - -

                                                        -
                                                        @@ -705,7 +605,7 @@

                                                        - +

                                                        @@ -714,7 +614,7 @@

                                                        -
                                                        +
                                                        Full Usage: this.Yield @@ -745,23 +645,6 @@

                                                        -
                                                        - - - - - - -

                                                        - -

                                                        -
                                                        @@ -786,7 +669,7 @@

                                                        - +

                                                        @@ -795,7 +678,7 @@

                                                        -
                                                        +
                                                        Full Usage: this.Yield @@ -826,23 +709,6 @@

                                                        -
                                                        - - - - - - -

                                                        - -

                                                        -
                                                        @@ -867,7 +733,7 @@

                                                        - +

                                                        @@ -876,7 +742,7 @@

                                                        -
                                                        +
                                                        Full Usage: this.Yield @@ -907,23 +773,6 @@

                                                        -
                                                        - - - - - - -

                                                        - -

                                                        -
                                                        @@ -948,7 +797,7 @@

                                                        - +

                                                        @@ -957,7 +806,7 @@

                                                        -
                                                        +
                                                        Full Usage: this.Yield @@ -988,23 +837,6 @@

                                                        -
                                                        - - - - - - -

                                                        - -

                                                        -
                                                        @@ -1029,7 +861,7 @@

                                                        - +

                                                        @@ -1038,7 +870,7 @@

                                                        -
                                                        +
                                                        Full Usage: this.Yield @@ -1069,23 +901,6 @@

                                                        -
                                                        - - - - - - -

                                                        - -

                                                        -
                                                        @@ -1110,7 +925,7 @@

                                                        - +

                                                        @@ -1119,7 +934,7 @@

                                                        -
                                                        +
                                                        Full Usage: this.Yield @@ -1150,23 +965,6 @@

                                                        -
                                                        - - - - - - -

                                                        - -

                                                        -
                                                        @@ -1191,7 +989,7 @@

                                                        - +

                                                        @@ -1200,7 +998,7 @@

                                                        -
                                                        +
                                                        Full Usage: this.Yield @@ -1231,23 +1029,6 @@

                                                        -
                                                        - - - - - - -

                                                        - -

                                                        -
                                                        @@ -1272,7 +1053,7 @@

                                                        - +

                                                        @@ -1281,7 +1062,7 @@

                                                        -
                                                        +
                                                        Full Usage: this.Yield @@ -1312,23 +1093,6 @@

                                                        -
                                                        - - - - - - -

                                                        - -

                                                        -
                                                        @@ -1353,7 +1117,7 @@

                                                        - +

                                                        @@ -1362,7 +1126,7 @@

                                                        -
                                                        +
                                                        Full Usage: this.Yield @@ -1393,23 +1157,6 @@

                                                        -
                                                        - - - - - - -

                                                        - -

                                                        -
                                                        @@ -1434,7 +1181,7 @@

                                                        - +

                                                        @@ -1443,7 +1190,7 @@

                                                        -
                                                        +
                                                        Full Usage: this.Yield @@ -1474,23 +1221,6 @@

                                                        -
                                                        - - - - - - -

                                                        - -

                                                        -
                                                        @@ -1515,7 +1245,7 @@

                                                        - +

                                                        @@ -1524,7 +1254,7 @@

                                                        -
                                                        +
                                                        Full Usage: this.YieldFrom @@ -1537,7 +1267,7 @@

                                                        ns : - seq<SheetEntity<TableElement list>> + SheetEntity<TableElement list> seq
                                                        @@ -1555,30 +1285,13 @@

                                                        -
                                                        - - - - - - -

                                                        - -

                                                        -
                                                        ns : - seq<SheetEntity<TableElement list>> + SheetEntity<TableElement list> seq
                                                        @@ -1596,7 +1309,7 @@

                                                        - +

                                                        @@ -1605,7 +1318,7 @@

                                                        -
                                                        +
                                                        Full Usage: this.Zero @@ -1624,23 +1337,6 @@

                                                        -
                                                        - - - - - - -

                                                        - -

                                                        -
                                                        @@ -1674,7 +1370,7 @@

                                                        - +

                                                        @@ -1683,7 +1379,7 @@

                                                        -
                                                        +
                                                        Full Usage: TableBuilder.Empty @@ -1699,23 +1395,6 @@

                                                        -
                                                        - - - - - - -

                                                        - -

                                                        -
                                                        @@ -1731,19 +1410,24 @@

                                                        -

                                                        -

                                                        -

                                                        +

                                                        + + + +
                                                        +
                                                          +

                                                          Type something to start searching.

                                                          +
                                                          +
                                                          + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-dsl-tableelement.html b/reference/fsspreadsheet-dsl-tableelement.html index b64a3e85..6f46858f 100644 --- a/reference/fsspreadsheet-dsl-tableelement.html +++ b/reference/fsspreadsheet-dsl-tableelement.html @@ -1,62 +1,50 @@ - - + - - TableElement (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                          -
                                                          - +
                                                          -
                                                          -
                                                          -
                                                          - +
                                                          + + + + + +
                                                          + + +
                                                          +
                                                          +

                                                          TableElement Type

                                                          @@ -91,9 +110,9 @@

                                                          All Interfaces: - IEquatable<TableElement> + IEquatable<TableElement> , - IStructuralEquatable + IStructuralEquatable
                                                          @@ -125,7 +144,7 @@

                                                          - +

                                                          @@ -134,7 +153,7 @@

                                                          -
                                                          +
                                                          Full Usage: UnindexedColumn ColumnElement list @@ -157,15 +176,6 @@

                                                          -
                                                          - - - - -

                                                          - -

                                                          -
                                                          @@ -181,7 +191,7 @@

                                                          - +

                                                          @@ -190,7 +200,7 @@

                                                          -
                                                          +
                                                          Full Usage: UnindexedRow RowElement list @@ -213,15 +223,6 @@

                                                          -
                                                          - - - - -

                                                          - -

                                                          -
                                                          @@ -259,7 +260,7 @@

                                                          - +

                                                          @@ -268,7 +269,7 @@

                                                          -
                                                          +
                                                          Full Usage: this.IsColumn @@ -284,23 +285,6 @@

                                                          -
                                                          - - - - - - -

                                                          - -

                                                          -
                                                          @@ -315,7 +299,7 @@

                                                          - +

                                                          @@ -324,7 +308,7 @@

                                                          -
                                                          +
                                                          Full Usage: this.IsRow @@ -340,23 +324,6 @@

                                                          -
                                                          - - - - - - -

                                                          - -

                                                          -
                                                          @@ -373,19 +340,24 @@

                                                          -

                                                          -

                                                          -

                                                          +

                                                          + + + +
                                                          +
                                                            +

                                                            Type something to start searching.

                                                            +
                                                            +
                                                            + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-dsl-transform.html b/reference/fsspreadsheet-dsl-transform.html index bba256d6..b7405cf5 100644 --- a/reference/fsspreadsheet-dsl-transform.html +++ b/reference/fsspreadsheet-dsl-transform.html @@ -1,62 +1,50 @@ - - + - - Transform (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                            -
                                                            - +
                                                            -
                                                            -
                                                            -
                                                            - +
                                                            + + + + + +
                                                            + + +
                                                            +
                                                            +

                                                            Transform Module

                                                            @@ -149,23 +168,6 @@

                                                            -
                                                            - - - - - - -

                                                            - -

                                                            -
                                                            @@ -246,23 +248,6 @@

                                                            -
                                                            - - - - - - -

                                                            - -

                                                            -

                                                            Extended Type: Workbook @@ -299,19 +284,24 @@

                                                            -
                                                            -
                                                            -
                                                            + + + + +
                                                            +
                                                              +

                                                              Type something to start searching.

                                                              +
                                                              +
                                                              + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-dsl-value.html b/reference/fsspreadsheet-dsl-value.html index c09a4a58..f788b2dc 100644 --- a/reference/fsspreadsheet-dsl-value.html +++ b/reference/fsspreadsheet-dsl-value.html @@ -1,62 +1,50 @@ - - + - - Value (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                              -
                                                              - +
                                                              -
                                                              -
                                                              -
                                                              - +
                                                              + + + + + +
                                                              + + +
                                                              +
                                                              +

                                                              Value Type

                                                              @@ -95,13 +114,13 @@

                                                              All Interfaces: - IStructuralComparable + IStructuralComparable , - IStructuralEquatable + IStructuralEquatable , - IComparable + IComparable , - ITuple + ITuple
                                                              @@ -137,7 +156,7 @@

                                                              - +

                                                              @@ -146,7 +165,7 @@

                                                              -
                                                              +
                                                              Full Usage: this.Item1 @@ -162,19 +181,6 @@

                                                              -
                                                              - - -

                                                              - -

                                                              -
                                                              @@ -189,7 +195,7 @@

                                                              - +

                                                              @@ -198,7 +204,7 @@

                                                              -
                                                              +
                                                              Full Usage: this.Item2 @@ -214,19 +220,6 @@

                                                              -
                                                              - - -

                                                              - -

                                                              -
                                                              @@ -243,19 +236,24 @@

                                                              -

                                                              -

                                                              -

                                                              +

                                                              + + + +
                                                              +
                                                                +

                                                                Type something to start searching.

                                                                +
                                                                +
                                                                + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-dsl-workbook.html b/reference/fsspreadsheet-dsl-workbook.html index 8442074e..39299d6a 100644 --- a/reference/fsspreadsheet-dsl-workbook.html +++ b/reference/fsspreadsheet-dsl-workbook.html @@ -1,62 +1,50 @@ - - + - - Workbook (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                -
                                                                - +
                                                                -
                                                                -
                                                                -
                                                                - +
                                                                + + + + + +
                                                                + + +
                                                                +
                                                                +

                                                                Workbook Type

                                                                @@ -91,9 +110,9 @@

                                                                All Interfaces: - IEquatable<Workbook> + IEquatable<Workbook> , - IStructuralEquatable + IStructuralEquatable
                                                                @@ -125,7 +144,7 @@

                                                                - +

                                                                @@ -134,7 +153,7 @@

                                                                -
                                                                +
                                                                Full Usage: Workbook WorkbookElement list @@ -157,15 +176,6 @@

                                                                -
                                                                - - - - -

                                                                - -

                                                                -
                                                                @@ -187,19 +197,24 @@

                                                                -
                                                                -

                                                                -

                                                                +
                                                                + + + +
                                                                +
                                                                  +

                                                                  Type something to start searching.

                                                                  +
                                                                  +
                                                                  + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-dsl-workbookbuilder.html b/reference/fsspreadsheet-dsl-workbookbuilder.html index 7b4e2b98..91c698f0 100644 --- a/reference/fsspreadsheet-dsl-workbookbuilder.html +++ b/reference/fsspreadsheet-dsl-workbookbuilder.html @@ -1,62 +1,50 @@ - - + - - WorkbookBuilder (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                  -
                                                                  - +
                                                                  -
                                                                  -
                                                                  -
                                                                  - +
                                                                  + + + + + +
                                                                  + + +
                                                                  +
                                                                  +

                                                                  WorkbookBuilder Type

                                                                  @@ -122,7 +141,7 @@

                                                                  - +

                                                                  @@ -131,7 +150,7 @@

                                                                  -
                                                                  +
                                                                  Full Usage: WorkbookBuilder() @@ -147,23 +166,6 @@

                                                                  -
                                                                  - - - - - - -

                                                                  - -

                                                                  -
                                                                  @@ -197,7 +199,7 @@

                                                                  - +

                                                                  @@ -206,7 +208,7 @@

                                                                  -
                                                                  +
                                                                  Full Usage: this.Combine @@ -242,23 +244,6 @@

                                                                  -
                                                                  - - - - - - -

                                                                  - -

                                                                  -
                                                                  @@ -291,7 +276,7 @@

                                                                  - +

                                                                  @@ -300,7 +285,7 @@

                                                                  -
                                                                  +
                                                                  Full Usage: this.Delay @@ -331,23 +316,6 @@

                                                                  -
                                                                  - - - - - - -

                                                                  - -

                                                                  -
                                                                  @@ -372,7 +340,7 @@

                                                                  - +

                                                                  @@ -381,7 +349,7 @@

                                                                  -
                                                                  +
                                                                  Full Usage: this.For @@ -394,7 +362,7 @@

                                                                  vs : - seq<'T> + 'T seq
                                                                  @@ -422,30 +390,13 @@

                                                                  -
                                                                  - - - - - - -

                                                                  - -

                                                                  -
                                                                  vs : - seq<'T> + 'T seq
                                                                  @@ -471,7 +422,7 @@

                                                                  - +

                                                                  @@ -480,7 +431,7 @@

                                                                  -
                                                                  +
                                                                  Full Usage: this.Run @@ -511,23 +462,6 @@

                                                                  -
                                                                  - - - - - - -

                                                                  - -

                                                                  -
                                                                  @@ -552,7 +486,7 @@

                                                                  - +

                                                                  @@ -561,7 +495,7 @@

                                                                  -
                                                                  +
                                                                  Full Usage: this.SignMessages @@ -589,23 +523,6 @@

                                                                  -
                                                                  - - - - - - -

                                                                  - -

                                                                  -
                                                                  @@ -630,7 +547,7 @@

                                                                  - +

                                                                  @@ -639,7 +556,7 @@

                                                                  -
                                                                  +
                                                                  Full Usage: this.Yield @@ -670,23 +587,6 @@

                                                                  -
                                                                  - - - - - - -

                                                                  - -

                                                                  -
                                                                  @@ -711,7 +611,7 @@

                                                                  - +

                                                                  @@ -720,7 +620,7 @@

                                                                  -
                                                                  +
                                                                  Full Usage: this.Yield @@ -751,23 +651,6 @@

                                                                  -
                                                                  - - - - - - -

                                                                  - -

                                                                  -
                                                                  @@ -792,7 +675,7 @@

                                                                  - +

                                                                  @@ -801,7 +684,7 @@

                                                                  -
                                                                  +
                                                                  Full Usage: this.Yield @@ -832,23 +715,6 @@

                                                                  -
                                                                  - - - - - - -

                                                                  - -

                                                                  -
                                                                  @@ -873,7 +739,7 @@

                                                                  - +

                                                                  @@ -882,7 +748,7 @@

                                                                  -
                                                                  +
                                                                  Full Usage: this.Yield @@ -913,23 +779,6 @@

                                                                  -
                                                                  - - - - - - -

                                                                  - -

                                                                  -
                                                                  @@ -954,7 +803,7 @@

                                                                  - +

                                                                  @@ -963,7 +812,7 @@

                                                                  -
                                                                  +
                                                                  Full Usage: this.Yield @@ -994,23 +843,6 @@

                                                                  -
                                                                  - - - - - - -

                                                                  - -

                                                                  -
                                                                  @@ -1035,7 +867,7 @@

                                                                  - +

                                                                  @@ -1044,7 +876,7 @@

                                                                  -
                                                                  +
                                                                  Full Usage: this.Yield @@ -1075,23 +907,6 @@

                                                                  -
                                                                  - - - - - - -

                                                                  - -

                                                                  -
                                                                  @@ -1116,7 +931,7 @@

                                                                  - +

                                                                  @@ -1125,7 +940,7 @@

                                                                  -
                                                                  +
                                                                  Full Usage: this.Yield @@ -1156,23 +971,6 @@

                                                                  -
                                                                  - - - - - - -

                                                                  - -

                                                                  -
                                                                  @@ -1197,7 +995,7 @@

                                                                  - +

                                                                  @@ -1206,7 +1004,7 @@

                                                                  -
                                                                  +
                                                                  Full Usage: this.Yield @@ -1237,23 +1035,6 @@

                                                                  -
                                                                  - - - - - - -

                                                                  - -

                                                                  -
                                                                  @@ -1278,7 +1059,7 @@

                                                                  - +

                                                                  @@ -1287,7 +1068,7 @@

                                                                  -
                                                                  +
                                                                  Full Usage: this.YieldFrom @@ -1300,7 +1081,7 @@

                                                                  ns : - seq<SheetEntity<WorkbookElement list>> + SheetEntity<WorkbookElement list> seq
                                                                  @@ -1318,30 +1099,13 @@

                                                                  -
                                                                  - - - - - - -

                                                                  - -

                                                                  -
                                                                  ns : - seq<SheetEntity<WorkbookElement list>> + SheetEntity<WorkbookElement list> seq
                                                                  @@ -1359,7 +1123,7 @@

                                                                  - +

                                                                  @@ -1368,7 +1132,7 @@

                                                                  -
                                                                  +
                                                                  Full Usage: this.Zero @@ -1387,23 +1151,6 @@

                                                                  -
                                                                  - - - - - - -

                                                                  - -

                                                                  -
                                                                  @@ -1437,7 +1184,7 @@

                                                                  - +

                                                                  @@ -1446,7 +1193,7 @@

                                                                  -
                                                                  +
                                                                  Full Usage: WorkbookBuilder.Empty @@ -1462,23 +1209,6 @@

                                                                  -
                                                                  - - - - - - -

                                                                  - -

                                                                  -
                                                                  @@ -1494,19 +1224,24 @@

                                                                  -

                                                                  -

                                                                  -

                                                                  +

                                                                  + + + +
                                                                  +
                                                                    +

                                                                    Type something to start searching.

                                                                    +
                                                                    +
                                                                    + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-dsl-workbookelement.html b/reference/fsspreadsheet-dsl-workbookelement.html index 94f0a295..360dfc49 100644 --- a/reference/fsspreadsheet-dsl-workbookelement.html +++ b/reference/fsspreadsheet-dsl-workbookelement.html @@ -1,62 +1,50 @@ - - + - - WorkbookElement (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                    -
                                                                    - +
                                                                    -
                                                                    -
                                                                    -
                                                                    - +
                                                                    + + + + + +
                                                                    + + +
                                                                    +
                                                                    +

                                                                    WorkbookElement Type

                                                                    @@ -91,9 +110,9 @@

                                                                    All Interfaces: - IEquatable<WorkbookElement> + IEquatable<WorkbookElement> , - IStructuralEquatable + IStructuralEquatable
                                                                    @@ -125,7 +144,7 @@

                                                                    - +

                                                                    @@ -134,7 +153,7 @@

                                                                    -
                                                                    +
                                                                    Full Usage: NamedSheet(string, SheetElement list) @@ -165,15 +184,6 @@

                                                                    -
                                                                    - - - - -

                                                                    - -

                                                                    -
                                                                    @@ -197,7 +207,7 @@

                                                                    - +

                                                                    @@ -206,7 +216,7 @@

                                                                    -
                                                                    +
                                                                    Full Usage: UnnamedSheet SheetElement list @@ -229,15 +239,6 @@

                                                                    -
                                                                    - - - - -

                                                                    - -

                                                                    -
                                                                    @@ -259,19 +260,24 @@

                                                                    -
                                                                    -

                                                                    -

                                                                    +

                                                                    + + + +
                                                                    +
                                                                      +

                                                                      Type something to start searching.

                                                                      +
                                                                      +
                                                                      + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-dsl.html b/reference/fsspreadsheet-dsl.html index 10c90137..6df636c4 100644 --- a/reference/fsspreadsheet-dsl.html +++ b/reference/fsspreadsheet-dsl.html @@ -1,62 +1,50 @@ - - + - - FsSpreadsheet.DSL - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                      -
                                                                      - +
                                                                      -
                                                                      -
                                                                      -
                                                                      - +
                                                                      + + + + + +
                                                                      + + +
                                                                      +
                                                                      +

                                                                      FsSpreadsheet.DSL Namespace

                                                                      @@ -101,16 +120,13 @@

                                                                      - - +

                                                                      @@ -131,16 +147,13 @@

                                                                      - - +

                                                                      @@ -161,16 +174,13 @@

                                                                      - - +

                                                                      @@ -191,16 +201,13 @@

                                                                      - - +

                                                                      @@ -221,16 +228,13 @@

                                                                      - - +

                                                                      @@ -251,16 +255,13 @@

                                                                      - - +

                                                                      @@ -281,16 +282,13 @@

                                                                      - - +

                                                                      @@ -311,16 +309,13 @@

                                                                      - - +

                                                                      @@ -341,16 +336,13 @@

                                                                      - - +

                                                                      @@ -371,16 +363,13 @@

                                                                      - - +

                                                                      @@ -401,16 +390,13 @@

                                                                      - - +

                                                                      @@ -431,16 +417,13 @@

                                                                      - - +

                                                                      @@ -461,16 +444,13 @@

                                                                      - - +

                                                                      @@ -491,16 +471,13 @@

                                                                      - - +

                                                                      @@ -521,16 +498,13 @@

                                                                      - - +

                                                                      @@ -551,16 +525,13 @@

                                                                      - - +

                                                                      @@ -581,16 +552,13 @@

                                                                      - - +

                                                                      @@ -611,16 +579,13 @@

                                                                      - - +

                                                                      @@ -641,16 +606,13 @@

                                                                      - - +

                                                                      @@ -671,16 +633,13 @@

                                                                      - - +

                                                                      @@ -701,16 +660,13 @@

                                                                      - - +

                                                                      @@ -731,16 +687,13 @@

                                                                      - - +

                                                                      @@ -761,16 +714,13 @@

                                                                      - - +

                                                                      @@ -791,16 +741,13 @@

                                                                      - - +

                                                                      @@ -821,16 +768,13 @@

                                                                      - - +

                                                                      @@ -841,19 +785,24 @@

                                                                      -

                                                                      -

                                                                      -

                                                                      +

                                                                      + + + +
                                                                      +
                                                                        +

                                                                        Type something to start searching.

                                                                        +
                                                                        +
                                                                        + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-enhancements.html b/reference/fsspreadsheet-enhancements.html index bc8e26f1..384536a3 100644 --- a/reference/fsspreadsheet-enhancements.html +++ b/reference/fsspreadsheet-enhancements.html @@ -1,62 +1,50 @@ - - + - - Enhancements (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                        -
                                                                        - +
                                                                        -
                                                                        -
                                                                        -
                                                                        - +
                                                                        + + + + + +
                                                                        + + +
                                                                        +
                                                                        +

                                                                        Enhancements Module

                                                                        @@ -142,7 +161,7 @@


                                                                        Returns: - seq<FsRangeColumn> + FsRangeColumn seq

                                                                        @@ -150,48 +169,47 @@

                                                                        -
                                                                        - - - - - - -

                                                                        - - Takes an FsRangeAddress and returns, for every column the range address spans, an FsRangeColumn. - -

                                                                        -
                                                                        -

                                                                        - Extended Type: - FsRangeAddress -

                                                                        -
                                                                        -
                                                                        - - rangeAddress - - : +
                                                                        + +
                                                                        + + + + + +

                                                                        + Takes an FsRangeAddress and returns, for every column the range address spans, an FsRangeColumn. +

                                                                        +
                                                                        +
                                                                        +

                                                                        + Extended Type: FsRangeAddress -

                                                                        -
                                                                        -
                                                                        -
                                                                        -
                                                                        - - Returns: - - seq<FsRangeColumn> -
                                                                        -
                                                                        -
                                                                        +

                                                                        +
                                                                        +
                                                                        + + rangeAddress + + : + FsRangeAddress +
                                                                        +
                                                                        +
                                                                        +
                                                                        +
                                                                        + + Returns: + + FsRangeColumn seq +
                                                                        +
                                                                        +
                                                                        + @@ -205,19 +223,24 @@

                                                                        -
                                                                        -
                                                                        -
                                                                        + + + + +
                                                                        +
                                                                          +

                                                                          Type something to start searching.

                                                                          +
                                                                          +
                                                                          + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-fsaddress.html b/reference/fsspreadsheet-fsaddress.html index b68bd297..6050549d 100644 --- a/reference/fsspreadsheet-fsaddress.html +++ b/reference/fsspreadsheet-fsaddress.html @@ -1,62 +1,50 @@ - - + - - FsAddress (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                          -
                                                                          - +
                                                                          -
                                                                          -
                                                                          -
                                                                          - +
                                                                          + + + + + +
                                                                          + + +
                                                                          +
                                                                          +

                                                                          FsAddress Type

                                                                          @@ -122,7 +141,7 @@

                                                                          - +

                                                                          @@ -131,7 +150,7 @@

                                                                          -
                                                                          +
                                                                          Full Usage: FsAddress(cellAddressString) @@ -159,23 +178,6 @@

                                                                          -
                                                                          - - - - - - -

                                                                          - -

                                                                          -
                                                                          @@ -200,7 +202,7 @@

                                                                          - +

                                                                          @@ -209,7 +211,7 @@

                                                                          -
                                                                          +
                                                                          Full Usage: FsAddress(rowNumber, columnNumber) @@ -245,23 +247,6 @@

                                                                          -
                                                                          - - - - - - -

                                                                          - -

                                                                          -
                                                                          @@ -294,7 +279,7 @@

                                                                          - +

                                                                          @@ -303,7 +288,7 @@

                                                                          -
                                                                          +
                                                                          Full Usage: FsAddress(rowNumber, columnLetter, fixedRow, fixedColumn) @@ -355,23 +340,6 @@

                                                                          -
                                                                          - - - - - - -

                                                                          - -

                                                                          -
                                                                          @@ -420,7 +388,7 @@

                                                                          - +

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

                                                                          -
                                                                          +
                                                                          Full Usage: FsAddress(rowNumber, columnNumber, fixedRow, fixedColumn) @@ -481,23 +449,6 @@

                                                                          -
                                                                          - - - - - - -

                                                                          - -

                                                                          -
                                                                          @@ -565,7 +516,7 @@

                                                                          - +

                                                                          @@ -574,7 +525,7 @@

                                                                          -
                                                                          +
                                                                          Full Usage: this.Address @@ -587,16 +538,13 @@

                                                                          - - +

                                                                          @@ -607,7 +555,7 @@

                                                                          - +

                                                                          @@ -616,7 +564,7 @@

                                                                          -
                                                                          +
                                                                          Full Usage: this.ColumnNumber @@ -629,16 +577,13 @@

                                                                          - - +

                                                                          @@ -649,7 +594,7 @@

                                                                          - +

                                                                          @@ -658,7 +603,7 @@

                                                                          -
                                                                          +
                                                                          Full Usage: this.Compare @@ -687,52 +632,53 @@

                                                                          -
                                                                          - - - - - - -

                                                                          - Compares the FsAddress with a given other one. -

                                                                          -
                                                                          -
                                                                          -
                                                                          - - address - - : - FsAddress -
                                                                          -
                                                                          -
                                                                          -
                                                                          -
                                                                          - - Returns: - - bool -
                                                                          -
                                                                          -

                                                                          - Returns true if both FsAddresses are equal. -

                                                                          -
                                                                          -
                                                                          +
                                                                          + +
                                                                          + + + + + +

                                                                          + Compares the FsAddress with a given other one. +

                                                                          +
                                                                          +
                                                                          +
                                                                          +
                                                                          + + address + + : + FsAddress +
                                                                          +
                                                                          +
                                                                          +
                                                                          +
                                                                          + + Returns: + + bool +
                                                                          +
                                                                          +

                                                                          + Returns true if both FsAddresses are equal. +

                                                                          +
                                                                          +
                                                                          +
                                                                          - +

                                                                          @@ -741,7 +687,7 @@

                                                                          -
                                                                          +
                                                                          Full Usage: this.Copy @@ -757,40 +703,39 @@

                                                                          -
                                                                          - - - - - - -

                                                                          - - Creates a deep copy of the FsAddress. - -

                                                                          -
                                                                          -
                                                                          -
                                                                          - - Returns: - - FsAddress -
                                                                          -
                                                                          -
                                                                          +
                                                                          + +
                                                                          + + + + + +

                                                                          + Creates a deep copy of the FsAddress. +

                                                                          +
                                                                          +
                                                                          +
                                                                          +
                                                                          + + Returns: + + FsAddress +
                                                                          +
                                                                          +
                                                                          +
                                                                          - +

                                                                          @@ -799,7 +744,7 @@

                                                                          -
                                                                          +
                                                                          Full Usage: this.FixedColumn @@ -815,23 +760,6 @@

                                                                          -
                                                                          - - - - - - -

                                                                          - -

                                                                          -
                                                                          @@ -846,7 +774,7 @@

                                                                          - +

                                                                          @@ -855,7 +783,7 @@

                                                                          -
                                                                          +
                                                                          Full Usage: this.FixedRow @@ -871,23 +799,6 @@

                                                                          -
                                                                          - - - - - - -

                                                                          - -

                                                                          -
                                                                          @@ -902,7 +813,7 @@

                                                                          - +

                                                                          @@ -911,7 +822,7 @@

                                                                          -
                                                                          +
                                                                          Full Usage: this.RowNumber @@ -924,16 +835,13 @@

                                                                          - - +

                                                                          @@ -944,7 +852,7 @@

                                                                          - +

                                                                          @@ -953,7 +861,7 @@

                                                                          -
                                                                          +
                                                                          Full Usage: this.ToIndices @@ -970,42 +878,43 @@

                                                                          -
                                                                          - - - - - - -

                                                                          - Returns the row- and the columnIndex of the FsAddress. -

                                                                          -
                                                                          -
                                                                          -
                                                                          - - Returns: - - int * int -
                                                                          -
                                                                          -

                                                                          - A tuple consisting of the rowIndex (fst) and the columnIndex (snd). -

                                                                          -
                                                                          -
                                                                          +
                                                                          + +
                                                                          + + + + + +

                                                                          + Returns the row- and the columnIndex of the FsAddress. +

                                                                          +
                                                                          +
                                                                          +
                                                                          +
                                                                          + + Returns: + + int * int +
                                                                          +
                                                                          +

                                                                          + A tuple consisting of the rowIndex (fst) and the columnIndex (snd). +

                                                                          +
                                                                          +
                                                                          +
                                                                          - +

                                                                          @@ -1014,7 +923,7 @@

                                                                          -
                                                                          +
                                                                          Full Usage: this.UpdateIndices @@ -1045,43 +954,42 @@

                                                                          -
                                                                          - - - - - - -

                                                                          - - Updates the row- and columnIndex respective to the given indices. - -

                                                                          -
                                                                          -
                                                                          -
                                                                          - - rowIndex - - : - int -
                                                                          -
                                                                          -
                                                                          - - colIndex - - : - int -
                                                                          -
                                                                          -
                                                                          +
                                                                          + +
                                                                          + + + + + +

                                                                          + Updates the row- and columnIndex respective to the given indices. +

                                                                          +
                                                                          +
                                                                          +
                                                                          +
                                                                          + + rowIndex + + : + int +
                                                                          +
                                                                          +
                                                                          + + colIndex + + : + int +
                                                                          +
                                                                          +
                                                                          +
                                                                          @@ -1106,7 +1014,7 @@

                                                                          - +

                                                                          @@ -1115,7 +1023,7 @@

                                                                          -
                                                                          +
                                                                          Full Usage: FsAddress.compare address1 address2 @@ -1151,56 +1059,57 @@

                                                                          -
                                                                          - - - - - - -

                                                                          - Checks if 2 FsAddresses are equal. -

                                                                          -
                                                                          -
                                                                          -
                                                                          - - address1 - - : - FsAddress -
                                                                          -
                                                                          -
                                                                          - - address2 - - : - FsAddress -
                                                                          -
                                                                          -
                                                                          -
                                                                          -
                                                                          - - Returns: - - bool -
                                                                          -
                                                                          -
                                                                          +
                                                                          + +
                                                                          + + + + + +

                                                                          + Checks if 2 FsAddresses are equal. +

                                                                          +
                                                                          +
                                                                          +
                                                                          +
                                                                          + + address1 + + : + FsAddress +
                                                                          +
                                                                          +
                                                                          + + address2 + + : + FsAddress +
                                                                          +
                                                                          +
                                                                          +
                                                                          +
                                                                          + + Returns: + + bool +
                                                                          +
                                                                          +
                                                                          +
                                                                          - +

                                                                          @@ -1209,7 +1118,7 @@

                                                                          -
                                                                          +
                                                                          Full Usage: FsAddress.copy address @@ -1237,50 +1146,49 @@

                                                                          -
                                                                          - - - - - - -

                                                                          - - Returns a deep copy of the given FsAddress. - -

                                                                          -
                                                                          -
                                                                          -
                                                                          - - address - - : - FsAddress -
                                                                          -
                                                                          -
                                                                          -
                                                                          -
                                                                          - - Returns: - - FsAddress -
                                                                          -
                                                                          -
                                                                          +
                                                                          + +
                                                                          + + + + + +

                                                                          + Returns a deep copy of the given FsAddress. +

                                                                          +
                                                                          +
                                                                          +
                                                                          +
                                                                          + + address + + : + FsAddress +
                                                                          +
                                                                          +
                                                                          +
                                                                          +
                                                                          + + Returns: + + FsAddress +
                                                                          +
                                                                          +
                                                                          +
                                                                          - +

                                                                          @@ -1289,7 +1197,7 @@

                                                                          -
                                                                          +
                                                                          Full Usage: FsAddress.toIndices address @@ -1318,52 +1226,53 @@

                                                                          -
                                                                          - - - - - - -

                                                                          - Returns the row- and the columnIndex of a given FsAddress. -

                                                                          -
                                                                          -
                                                                          -
                                                                          - - address - - : - FsAddress -
                                                                          -
                                                                          -
                                                                          -
                                                                          -
                                                                          - - Returns: - - int * int -
                                                                          -
                                                                          -

                                                                          - A tuple consisting of the rowIndex (fst) and the columnIndex (snd). -

                                                                          -
                                                                          -
                                                                          +
                                                                          + +
                                                                          + + + + + +

                                                                          + Returns the row- and the columnIndex of a given FsAddress. +

                                                                          +
                                                                          +
                                                                          +
                                                                          +
                                                                          + + address + + : + FsAddress +
                                                                          +
                                                                          +
                                                                          +
                                                                          +
                                                                          + + Returns: + + int * int +
                                                                          +
                                                                          +

                                                                          + A tuple consisting of the rowIndex (fst) and the columnIndex (snd). +

                                                                          +
                                                                          +
                                                                          +
                                                                          - +

                                                                          @@ -1372,7 +1281,7 @@

                                                                          -
                                                                          +
                                                                          Full Usage: FsAddress.updateIndices rowIndex colIndex address @@ -1416,79 +1325,83 @@

                                                                          -
                                                                          - - - - - - -

                                                                          - - Updates the row- and columnIndex of a given FsAddress respective to the given indices. - -

                                                                          -
                                                                          -
                                                                          -
                                                                          - - rowIndex - - : - int -
                                                                          -
                                                                          -
                                                                          - - colIndex - - : - int -
                                                                          -
                                                                          -
                                                                          - - address - - : - FsAddress -
                                                                          -
                                                                          -
                                                                          -
                                                                          -
                                                                          - - Returns: - - FsAddress -
                                                                          -
                                                                          -
                                                                          +
                                                                          + +
                                                                          + + + + + +

                                                                          + Updates the row- and columnIndex of a given FsAddress respective to the given indices. +

                                                                          +
                                                                          +
                                                                          +
                                                                          +
                                                                          + + rowIndex + + : + int +
                                                                          +
                                                                          +
                                                                          + + colIndex + + : + int +
                                                                          +
                                                                          +
                                                                          + + address + + : + FsAddress +
                                                                          +
                                                                          +
                                                                          +
                                                                          +
                                                                          + + Returns: + + FsAddress +
                                                                          +
                                                                          +
                                                                          +
                                                                          -

                                                                          -
                                                                          -

                                                                          +

                                                                          + + + +
                                                                          +
                                                                            +

                                                                            Type something to start searching.

                                                                            +
                                                                            +
                                                                            + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-fscell.html b/reference/fsspreadsheet-fscell.html index ff57b571..8bdfb2c3 100644 --- a/reference/fsspreadsheet-fscell.html +++ b/reference/fsspreadsheet-fscell.html @@ -1,62 +1,50 @@ - - + - - FsCell (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                            -
                                                                            - +
                                                                            -
                                                                            -
                                                                            -
                                                                            - +
                                                                            + + + + + +
                                                                            + + +
                                                                            +
                                                                            +

                                                                            FsCell Type

                                                                            @@ -122,7 +141,7 @@

                                                                            - +

                                                                            @@ -131,7 +150,7 @@

                                                                            -
                                                                            +
                                                                            Full Usage: FsCell(value, ?dataType, ?address) @@ -144,7 +163,7 @@

                                                                            value : - IConvertible + IConvertible
                                                                            @@ -175,30 +194,13 @@

                                                                            -
                                                                            - - - - - - -

                                                                            - -

                                                                            -
                                                                            value : - IConvertible + IConvertible
                                                                            @@ -232,7 +234,7 @@

                                                                            - +

                                                                            @@ -241,7 +243,7 @@

                                                                            -
                                                                            +
                                                                            Full Usage: FsCell(value, ?dataType, ?address) @@ -285,23 +287,6 @@

                                                                            -
                                                                            - - - - - - -

                                                                            - -

                                                                            -
                                                                            @@ -361,7 +346,7 @@

                                                                            - +

                                                                            @@ -370,7 +355,7 @@

                                                                            -
                                                                            +
                                                                            Full Usage: this.Address @@ -383,16 +368,13 @@

                                                                            - - +

                                                                            @@ -405,7 +387,7 @@

                                                                            - +

                                                                            @@ -414,7 +396,7 @@

                                                                            -
                                                                            +
                                                                            Full Usage: this.ColumnNumber @@ -427,21 +409,16 @@

                                                                            - - +

                                                                            - - Gets or sets the columnIndex of the FsCell. - + Gets or sets the columnIndex of the FsCell.

                                                                            @@ -449,7 +426,7 @@

                                                                            - +

                                                                            @@ -458,7 +435,7 @@

                                                                            -
                                                                            +
                                                                            Full Usage: this.Copy @@ -474,40 +451,39 @@

                                                                            -
                                                                            - - - - - - -

                                                                            - - Creates a deep copy of this FsCell. - -

                                                                            -
                                                                            -
                                                                            -
                                                                            - - Returns: - - FsCell -
                                                                            -
                                                                            -
                                                                            +
                                                                            + +
                                                                            + + + + + +

                                                                            + Creates a deep copy of this FsCell. +

                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + Returns: + + FsCell +
                                                                            +
                                                                            +
                                                                            +
                                                                            - +

                                                                            @@ -516,7 +492,7 @@

                                                                            -
                                                                            +
                                                                            Full Usage: this.CopyFrom @@ -539,41 +515,40 @@

                                                                            -
                                                                            - - - - - - -

                                                                            - - Copies and replaces DataType and Value from a given FsCell into this one. - -

                                                                            -
                                                                            -
                                                                            -
                                                                            - - otherCell - - : - FsCell -
                                                                            -
                                                                            -
                                                                            +
                                                                            + +
                                                                            + + + + + +

                                                                            + Copies and replaces DataType and Value from a given FsCell into this one. +

                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + otherCell + + : + FsCell +
                                                                            +
                                                                            +
                                                                            +
                                                                            - +

                                                                            @@ -582,7 +557,7 @@

                                                                            -
                                                                            +
                                                                            Full Usage: this.CopyTo @@ -605,41 +580,40 @@

                                                                            -
                                                                            - - - - - - -

                                                                            - - Copies DataType and Value from this FsCell to a given one and replaces theirs. - -

                                                                            -
                                                                            -
                                                                            -
                                                                            - - target - - : - FsCell -
                                                                            -
                                                                            -
                                                                            +
                                                                            + +
                                                                            + + + + + +

                                                                            + Copies DataType and Value from this FsCell to a given one and replaces theirs. +

                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + target + + : + FsCell +
                                                                            +
                                                                            +
                                                                            +
                                                                            - +

                                                                            @@ -648,7 +622,7 @@

                                                                            -
                                                                            +
                                                                            Full Usage: this.DataType @@ -659,43 +633,44 @@

                                                                            -
                                                                            - - - - - - -

                                                                            - +

                                                                            + +
                                                                            + + + + + +

                                                                            + Gets or sets the DataType of this FsCell's data.

                                                                            Changing the data type will cause FsSpreadsheet to convert the current value to the new DataType.

                                                                            An exception will be thrown if the current value cannot be converted to the new DataType.

                                                                            -

                                                                            -
                                                                            - - - - - -
                                                                            - - ArgumentException - - - -
                                                                            +

                                                                            +
                                                                            + + + + + + +
                                                                            + + ArgumentException + + + +
                                                                            +
                                                                            - +

                                                                            @@ -704,7 +679,7 @@

                                                                            -
                                                                            +
                                                                            Full Usage: this.RowNumber @@ -717,21 +692,16 @@

                                                                            - - +

                                                                            - - Gets or sets the rowIndex of the FsCell. - + Gets or sets the rowIndex of the FsCell.

                                                                            @@ -739,7 +709,7 @@

                                                                            - +

                                                                            @@ -748,7 +718,7 @@

                                                                            -
                                                                            +
                                                                            Full Usage: this.SetValueAs @@ -771,41 +741,42 @@

                                                                            -
                                                                            - - - - - - -

                                                                            - +

                                                                            + +
                                                                            + + + + + +

                                                                            + Sets the FsCell's value.

                                                                            FsSpreadsheet will try to translate it to the corresponding type, if it cannot, the value will be left as a string.

                                                                            -

                                                                            -
                                                                            -
                                                                            -
                                                                            - - value - - : - obj -
                                                                            -
                                                                            -
                                                                            +

                                                                            +
                                                                            + +
                                                                            +
                                                                            + + value + + : + obj +
                                                                            +
                                                                            +
                                                                            +
                                                                            - +

                                                                            @@ -814,7 +785,7 @@

                                                                            -
                                                                            +
                                                                            Full Usage: this.StructurallyEquals @@ -842,23 +813,6 @@

                                                                            -
                                                                            - - - - - - -

                                                                            - -

                                                                            -
                                                                            @@ -883,7 +837,7 @@

                                                                            - +

                                                                            @@ -892,7 +846,7 @@

                                                                            -
                                                                            +
                                                                            Full Usage: this.Value @@ -905,16 +859,13 @@

                                                                            - - +

                                                                            @@ -927,7 +878,7 @@

                                                                            - +

                                                                            @@ -936,7 +887,7 @@

                                                                            -
                                                                            +
                                                                            Full Usage: this.ValueAsBool @@ -952,40 +903,39 @@

                                                                            -
                                                                            - - - - - - -

                                                                            - - Gets the value as bool - -

                                                                            -
                                                                            -
                                                                            -
                                                                            - - Returns: - - bool -
                                                                            -
                                                                            -
                                                                            +
                                                                            + +
                                                                            + + + + + +

                                                                            + Gets the value as bool +

                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + Returns: + + bool +
                                                                            +
                                                                            +
                                                                            +
                                                                            - +

                                                                            @@ -994,7 +944,7 @@

                                                                            -
                                                                            +
                                                                            Full Usage: this.ValueAsChar @@ -1010,40 +960,39 @@

                                                                            -
                                                                            - - - - - - -

                                                                            - - Gets the value as char - -

                                                                            -
                                                                            -
                                                                            -
                                                                            - - Returns: - - char -
                                                                            -
                                                                            -
                                                                            +
                                                                            + +
                                                                            + + + + + +

                                                                            + Gets the value as char +

                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + Returns: + + char +
                                                                            +
                                                                            +
                                                                            +
                                                                            - +

                                                                            @@ -1052,7 +1001,7 @@

                                                                            -
                                                                            +
                                                                            Full Usage: this.ValueAsDateTime @@ -1060,7 +1009,7 @@


                                                                            Returns: - DateTime + DateTime

                                                                            @@ -1068,40 +1017,39 @@

                                                                            -
                                                                            - - - - - - -

                                                                            - - Gets the value as DateTime - -

                                                                            -
                                                                            -
                                                                            -
                                                                            - - Returns: - - DateTime -
                                                                            -
                                                                            -
                                                                            +
                                                                            + +
                                                                            + + + + + +

                                                                            + Gets the value as DateTime +

                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + Returns: + + DateTime +
                                                                            +
                                                                            +
                                                                            +
                                                                            - +

                                                                            @@ -1110,7 +1058,7 @@

                                                                            -
                                                                            +
                                                                            Full Usage: this.ValueAsDecimal @@ -1126,40 +1074,39 @@

                                                                            -
                                                                            - - - - - - -

                                                                            - - Gets the value as decimal - -

                                                                            -
                                                                            -
                                                                            -
                                                                            - - Returns: - - decimal -
                                                                            -
                                                                            -
                                                                            +
                                                                            + +
                                                                            + + + + + +

                                                                            + Gets the value as decimal +

                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + Returns: + + decimal +
                                                                            +
                                                                            +
                                                                            +
                                                                            - +

                                                                            @@ -1168,7 +1115,7 @@

                                                                            -
                                                                            +
                                                                            Full Usage: this.ValueAsDouble @@ -1184,40 +1131,39 @@

                                                                            -
                                                                            - - - - - - -

                                                                            - - Gets the value as double - -

                                                                            -
                                                                            -
                                                                            -
                                                                            - - Returns: - - float -
                                                                            -
                                                                            -
                                                                            +
                                                                            + +
                                                                            + + + + + +

                                                                            + Gets the value as double +

                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + Returns: + + float +
                                                                            +
                                                                            +
                                                                            +
                                                                            - +

                                                                            @@ -1226,7 +1172,7 @@

                                                                            -
                                                                            +
                                                                            Full Usage: this.ValueAsFloat @@ -1242,40 +1188,39 @@

                                                                            -
                                                                            - - - - - - -

                                                                            - - Gets the value as float - -

                                                                            -
                                                                            -
                                                                            -
                                                                            - - Returns: - - float -
                                                                            -
                                                                            -
                                                                            +
                                                                            + +
                                                                            + + + + + +

                                                                            + Gets the value as float +

                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + Returns: + + float +
                                                                            +
                                                                            +
                                                                            +
                                                                            - +

                                                                            @@ -1284,7 +1229,7 @@

                                                                            -
                                                                            +
                                                                            Full Usage: this.ValueAsGuid @@ -1292,7 +1237,7 @@


                                                                            Returns: - Guid + Guid

                                                                            @@ -1300,40 +1245,39 @@

                                                                            -
                                                                            - - - - - - -

                                                                            - - Gets the value as Guid - -

                                                                            -
                                                                            -
                                                                            -
                                                                            - - Returns: - - Guid -
                                                                            -
                                                                            -
                                                                            +
                                                                            + +
                                                                            + + + + + +

                                                                            + Gets the value as Guid +

                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + Returns: + + Guid +
                                                                            +
                                                                            +
                                                                            +
                                                                            - +

                                                                            @@ -1342,7 +1286,7 @@

                                                                            -
                                                                            +
                                                                            Full Usage: this.ValueAsInt @@ -1358,40 +1302,39 @@

                                                                            -
                                                                            - - - - - - -

                                                                            - - Gets the value as int - -

                                                                            -
                                                                            -
                                                                            -
                                                                            - - Returns: - - int -
                                                                            -
                                                                            -
                                                                            +
                                                                            + +
                                                                            + + + + + +

                                                                            + Gets the value as int +

                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + Returns: + + int +
                                                                            +
                                                                            +
                                                                            +
                                                                            - +

                                                                            @@ -1400,7 +1343,7 @@

                                                                            -
                                                                            +
                                                                            Full Usage: this.ValueAsLong @@ -1416,40 +1359,39 @@

                                                                            -
                                                                            - - - - - - -

                                                                            - - Gets the value as long - -

                                                                            -
                                                                            -
                                                                            -
                                                                            - - Returns: - - int64 -
                                                                            -
                                                                            -
                                                                            +
                                                                            + +
                                                                            + + + + + +

                                                                            + Gets the value as long +

                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + Returns: + + int64 +
                                                                            +
                                                                            +
                                                                            +
                                                                            - +

                                                                            @@ -1458,7 +1400,7 @@

                                                                            -
                                                                            +
                                                                            Full Usage: this.ValueAsString @@ -1474,40 +1416,39 @@

                                                                            -
                                                                            - - - - - - -

                                                                            - - Gets the value as string - -

                                                                            -
                                                                            -
                                                                            -
                                                                            - - Returns: - - string -
                                                                            -
                                                                            -
                                                                            +
                                                                            + +
                                                                            + + + + + +

                                                                            + Gets the value as string +

                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + Returns: + + string +
                                                                            +
                                                                            +
                                                                            +
                                                                            - +

                                                                            @@ -1516,7 +1457,7 @@

                                                                            -
                                                                            +
                                                                            Full Usage: this.ValueAsUInt @@ -1532,40 +1473,39 @@

                                                                            -
                                                                            - - - - - - -

                                                                            - - Gets the value as uint - -

                                                                            -
                                                                            -
                                                                            -
                                                                            - - Returns: - - uint32 -
                                                                            -
                                                                            -
                                                                            +
                                                                            + +
                                                                            + + + + + +

                                                                            + Gets the value as uint +

                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + Returns: + + uint32 +
                                                                            +
                                                                            +
                                                                            +
                                                                            - +

                                                                            @@ -1574,7 +1514,7 @@

                                                                            -
                                                                            +
                                                                            Full Usage: this.ValueAsULong @@ -1590,34 +1530,33 @@

                                                                            -
                                                                            - - - - - - -

                                                                            - - Gets the value as ulong - -

                                                                            -
                                                                            -
                                                                            -
                                                                            - - Returns: - - uint64 -
                                                                            -
                                                                            -
                                                                            +
                                                                            + +
                                                                            + + + + + +

                                                                            + Gets the value as ulong +

                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + Returns: + + uint64 +
                                                                            +
                                                                            +
                                                                            +
                                                                            @@ -1642,7 +1581,7 @@

                                                                            - +

                                                                            @@ -1651,7 +1590,7 @@

                                                                            -
                                                                            +
                                                                            Full Usage: FsCell.copy cell @@ -1679,50 +1618,49 @@

                                                                            -
                                                                            - - - - - - -

                                                                            - - Returns a deep copy of a given FsCell. - -

                                                                            -
                                                                            -
                                                                            -
                                                                            - - cell - - : - FsCell -
                                                                            -
                                                                            -
                                                                            -
                                                                            -
                                                                            - - Returns: - - FsCell -
                                                                            -
                                                                            -
                                                                            +
                                                                            + +
                                                                            + + + + + +

                                                                            + Returns a deep copy of a given FsCell. +

                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + cell + + : + FsCell +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + Returns: + + FsCell +
                                                                            +
                                                                            +
                                                                            +
                                                                            - +

                                                                            @@ -1731,7 +1669,7 @@

                                                                            -
                                                                            +
                                                                            Full Usage: FsCell.copyFromTo sourceCell targetCell @@ -1767,58 +1705,57 @@

                                                                            -
                                                                            - - - - - - -

                                                                            - - Copies and replaces DataType and Value from a source FsCell into a target FsCell. Returns the target cell. - -

                                                                            -
                                                                            -
                                                                            -
                                                                            - - sourceCell - - : - FsCell -
                                                                            -
                                                                            -
                                                                            - - targetCell - - : - FsCell -
                                                                            -
                                                                            -
                                                                            -
                                                                            -
                                                                            - - Returns: - - FsCell -
                                                                            -
                                                                            -
                                                                            +
                                                                            + +
                                                                            + + + + + +

                                                                            + Copies and replaces DataType and Value from a source FsCell into a target FsCell. Returns the target cell. +

                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + sourceCell + + : + FsCell +
                                                                            +
                                                                            +
                                                                            + + targetCell + + : + FsCell +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + Returns: + + FsCell +
                                                                            +
                                                                            +
                                                                            +
                                                                            - +

                                                                            @@ -1827,7 +1764,7 @@

                                                                            -
                                                                            +
                                                                            Full Usage: FsCell.create rowNumber colNumber value @@ -1871,124 +1808,122 @@

                                                                            -
                                                                            - - -
                                                                            - - -
                                                                            - - - - - - -

                                                                            - - Creates an empty FsCell. - -

                                                                            -
                                                                            -
                                                                            -
                                                                            - - Returns: - - FsCell -
                                                                            -
                                                                            -
                                                                            + FsCell +

                                                                            +
                                                                            +
                                                                            +
                                                                            - +

                                                                            @@ -1997,7 +1932,7 @@

                                                                            -
                                                                            +
                                                                            Full Usage: FsCell.createEmptyWithAdress adress @@ -2025,50 +1960,49 @@

                                                                            -
                                                                            - - - - - - -

                                                                            - - Creates an empty FsCell with a given FsAddress. - -

                                                                            -
                                                                            -
                                                                            -
                                                                            - - adress - - : - FsAddress -
                                                                            -
                                                                            -
                                                                            -
                                                                            -
                                                                            - - Returns: - - FsCell -
                                                                            -
                                                                            -
                                                                            +
                                                                            + +
                                                                            + + + + + +

                                                                            + Creates an empty FsCell with a given FsAddress. +

                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + adress + + : + FsAddress +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + Returns: + + FsCell +
                                                                            +
                                                                            +
                                                                            +
                                                                            - +

                                                                            @@ -2077,7 +2011,7 @@

                                                                            -
                                                                            +
                                                                            Full Usage: FsCell.createWithAdress adress value @@ -2113,58 +2047,57 @@

                                                                            -
                                                                            - - - - - - -

                                                                            - - Creates an FsCell with the given FsAdress and value. Inferes the DataType. - -

                                                                            -
                                                                            -
                                                                            -
                                                                            - - adress - - : - FsAddress -
                                                                            -
                                                                            -
                                                                            - - value - - : - 'a -
                                                                            -
                                                                            -
                                                                            -
                                                                            -
                                                                            - - Returns: - - FsCell -
                                                                            -
                                                                            -
                                                                            +
                                                                            + +
                                                                            + + + + + +

                                                                            + Creates an FsCell with the given FsAdress and value. Inferes the DataType. +

                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + adress + + : + FsAddress +
                                                                            +
                                                                            +
                                                                            + + value + + : + 'a +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + Returns: + + FsCell +
                                                                            +
                                                                            +
                                                                            +
                                                                            - +

                                                                            @@ -2173,7 +2106,7 @@

                                                                            -
                                                                            +
                                                                            Full Usage: FsCell.createWithDataType dataType rowNumber colNumber value @@ -2225,74 +2158,73 @@

                                                                            -
                                                                            - - - - - - -

                                                                            - - Creates an FsCell with the given DataType, rowNumber, colNumber, and value. - -

                                                                            -
                                                                            -
                                                                            -
                                                                            - - dataType - - : - DataType -
                                                                            -
                                                                            -
                                                                            - - rowNumber - - : - int -
                                                                            -
                                                                            -
                                                                            - - colNumber - - : - int -
                                                                            -
                                                                            -
                                                                            - - value - - : - obj -
                                                                            -
                                                                            -
                                                                            -
                                                                            -
                                                                            - - Returns: - - FsCell -
                                                                            -
                                                                            -
                                                                            +
                                                                            + +
                                                                            + + + + + +

                                                                            + Creates an FsCell with the given DataType, rowNumber, colNumber, and value. +

                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + dataType + + : + DataType +
                                                                            +
                                                                            +
                                                                            + + rowNumber + + : + int +
                                                                            +
                                                                            +
                                                                            + + colNumber + + : + int +
                                                                            +
                                                                            +
                                                                            + + value + + : + obj +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + Returns: + + FsCell +
                                                                            +
                                                                            +
                                                                            +
                                                                            - +

                                                                            @@ -2301,7 +2233,7 @@

                                                                            -
                                                                            +
                                                                            Full Usage: FsCell.empty () @@ -2320,40 +2252,39 @@

                                                                            -
                                                                            - - - - - - -

                                                                            - - Creates an empty FsCell, set at row 0, column 0 (1-based). - -

                                                                            -
                                                                            -
                                                                            -
                                                                            - - Returns: - - FsCell -
                                                                            -
                                                                            -
                                                                            +
                                                                            + +
                                                                            + + + + + +

                                                                            + Creates an empty FsCell, set at row 0, column 0 (1-based). +

                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + Returns: + + FsCell +
                                                                            +
                                                                            +
                                                                            +
                                                                            - +

                                                                            @@ -2362,7 +2293,7 @@

                                                                            -
                                                                            +
                                                                            Full Usage: FsCell.getValueAsBool cell @@ -2390,50 +2321,49 @@

                                                                            -
                                                                            - - - - - - -

                                                                            - - Gets the value as bool - -

                                                                            -
                                                                            -
                                                                            -
                                                                            - - cell - - : - FsCell -
                                                                            -
                                                                            -
                                                                            -
                                                                            -
                                                                            - - Returns: - - bool -
                                                                            -
                                                                            -
                                                                            +
                                                                            + +
                                                                            + + + + + +

                                                                            + Gets the value as bool +

                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + cell + + : + FsCell +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + Returns: + + bool +
                                                                            +
                                                                            +
                                                                            +
                                                                            - +

                                                                            @@ -2442,7 +2372,7 @@

                                                                            -
                                                                            +
                                                                            Full Usage: FsCell.getValueAsChar cell @@ -2470,50 +2400,49 @@

                                                                            -
                                                                            - - - - - - -

                                                                            - - Gets the value as char - -

                                                                            -
                                                                            -
                                                                            -
                                                                            - - cell - - : - FsCell -
                                                                            -
                                                                            -
                                                                            -
                                                                            -
                                                                            - - Returns: - - char -
                                                                            -
                                                                            -
                                                                            +
                                                                            + +
                                                                            + + + + + +

                                                                            + Gets the value as char +

                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + cell + + : + FsCell +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + Returns: + + char +
                                                                            +
                                                                            +
                                                                            +
                                                                            - +

                                                                            @@ -2522,7 +2451,7 @@

                                                                            -
                                                                            +
                                                                            Full Usage: FsCell.getValueAsDateTime cell @@ -2542,7 +2471,7 @@


                                                                            Returns: - DateTime + DateTime

                                                                            @@ -2550,50 +2479,49 @@

                                                                            -
                                                                            - - - - - - -

                                                                            - - Gets the value as DateTime - -

                                                                            -
                                                                            -
                                                                            -
                                                                            - - cell - - : - FsCell -
                                                                            -
                                                                            -
                                                                            -
                                                                            -
                                                                            - - Returns: - - DateTime -
                                                                            -
                                                                            -
                                                                            +
                                                                            + +
                                                                            + + + + + +

                                                                            + Gets the value as DateTime +

                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + cell + + : + FsCell +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + Returns: + + DateTime +
                                                                            +
                                                                            +
                                                                            +
                                                                            - +

                                                                            @@ -2602,7 +2530,7 @@

                                                                            -
                                                                            +
                                                                            Full Usage: FsCell.getValueAsDecimal cell @@ -2630,50 +2558,49 @@

                                                                            -
                                                                            - - - - - - -

                                                                            - - Gets the value as decimal - -

                                                                            -
                                                                            -
                                                                            -
                                                                            - - cell - - : - FsCell -
                                                                            -
                                                                            -
                                                                            -
                                                                            -
                                                                            - - Returns: - - decimal -
                                                                            -
                                                                            -
                                                                            +
                                                                            + +
                                                                            + + + + + +

                                                                            + Gets the value as decimal +

                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + cell + + : + FsCell +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + Returns: + + decimal +
                                                                            +
                                                                            +
                                                                            +
                                                                            - +

                                                                            @@ -2682,7 +2609,7 @@

                                                                            -
                                                                            +
                                                                            Full Usage: FsCell.getValueAsDouble cell @@ -2710,50 +2637,49 @@

                                                                            -
                                                                            - - - - - - -

                                                                            - - Gets the value as double - -

                                                                            -
                                                                            -
                                                                            -
                                                                            - - cell - - : - FsCell -
                                                                            -
                                                                            -
                                                                            -
                                                                            -
                                                                            - - Returns: - - float -
                                                                            -
                                                                            -
                                                                            +
                                                                            + +
                                                                            + + + + + +

                                                                            + Gets the value as double +

                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + cell + + : + FsCell +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + Returns: + + float +
                                                                            +
                                                                            +
                                                                            +
                                                                            - +

                                                                            @@ -2762,7 +2688,7 @@

                                                                            -
                                                                            +
                                                                            Full Usage: FsCell.getValueAsFloat cell @@ -2786,54 +2712,53 @@


                                                                            -
                                                                            -
                                                                            - - -
                                                                            - - - - - - -

                                                                            - - Gets the value as float - -

                                                                            +

                                                                            -
                                                                            -
                                                                            - - cell - - : - FsCell -
                                                                            -
                                                                            -
                                                                            -
                                                                            -
                                                                            - - Returns: - - float -
                                                                            -
                                                                            -
                                                                            + + +
                                                                            + +
                                                                            + + + + + +

                                                                            + Gets the value as float +

                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + cell + + : + FsCell +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + Returns: + + float +
                                                                            +
                                                                            +
                                                                            +
                                                                            - +

                                                                            @@ -2842,7 +2767,7 @@

                                                                            -
                                                                            +
                                                                            Full Usage: FsCell.getValueAsGuid cell @@ -2862,7 +2787,7 @@


                                                                            Returns: - Guid + Guid

                                                                            @@ -2870,50 +2795,49 @@

                                                                            -
                                                                            - - - - - - -

                                                                            - - Gets the value as Guid - -

                                                                            -
                                                                            -
                                                                            -
                                                                            - - cell - - : - FsCell -
                                                                            -
                                                                            -
                                                                            -
                                                                            -
                                                                            - - Returns: - - Guid -
                                                                            -
                                                                            -
                                                                            +
                                                                            + +
                                                                            + + + + + +

                                                                            + Gets the value as Guid +

                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + cell + + : + FsCell +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + Returns: + + Guid +
                                                                            +
                                                                            +
                                                                            +
                                                                            - +

                                                                            @@ -2922,7 +2846,7 @@

                                                                            -
                                                                            +
                                                                            Full Usage: FsCell.getValueAsInt cell @@ -2950,50 +2874,49 @@

                                                                            -
                                                                            - - - - - - -

                                                                            - - Gets the value as int - -

                                                                            -
                                                                            -
                                                                            -
                                                                            - - cell - - : - FsCell -
                                                                            -
                                                                            -
                                                                            -
                                                                            -
                                                                            - - Returns: - - int -
                                                                            -
                                                                            -
                                                                            +
                                                                            + +
                                                                            + + + + + +

                                                                            + Gets the value as int +

                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + cell + + : + FsCell +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + Returns: + + int +
                                                                            +
                                                                            +
                                                                            +
                                                                            - +

                                                                            @@ -3002,7 +2925,7 @@

                                                                            -
                                                                            +
                                                                            Full Usage: FsCell.getValueAsLong cell @@ -3030,50 +2953,49 @@

                                                                            -
                                                                            - - - - - - -

                                                                            - - Gets the value as long - -

                                                                            -
                                                                            -
                                                                            -
                                                                            - - cell - - : - FsCell -
                                                                            -
                                                                            -
                                                                            -
                                                                            -
                                                                            - - Returns: - - int64 -
                                                                            -
                                                                            -
                                                                            +
                                                                            + +
                                                                            + + + + + +

                                                                            + Gets the value as long +

                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + cell + + : + FsCell +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + Returns: + + int64 +
                                                                            +
                                                                            +
                                                                            +
                                                                            - +

                                                                            @@ -3082,7 +3004,7 @@

                                                                            -
                                                                            +
                                                                            Full Usage: FsCell.getValueAsString cell @@ -3110,50 +3032,49 @@

                                                                            -
                                                                            - - - - - - -

                                                                            - - Gets the value as string - -

                                                                            -
                                                                            -
                                                                            -
                                                                            - - cell - - : - FsCell -
                                                                            -
                                                                            -
                                                                            -
                                                                            -
                                                                            - - Returns: - - string -
                                                                            -
                                                                            -
                                                                            +
                                                                            + +
                                                                            + + + + + +

                                                                            + Gets the value as string +

                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + cell + + : + FsCell +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + Returns: + + string +
                                                                            +
                                                                            +
                                                                            +
                                                                            - +

                                                                            @@ -3162,7 +3083,7 @@

                                                                            -
                                                                            +
                                                                            Full Usage: FsCell.getValueAsUInt cell @@ -3190,50 +3111,49 @@

                                                                            -
                                                                            - - - - - - -

                                                                            - - Gets the value as uint - -

                                                                            -
                                                                            -
                                                                            -
                                                                            - - cell - - : - FsCell -
                                                                            -
                                                                            -
                                                                            -
                                                                            -
                                                                            - - Returns: - - uint32 -
                                                                            -
                                                                            -
                                                                            +
                                                                            + +
                                                                            + + + + + +

                                                                            + Gets the value as uint +

                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + cell + + : + FsCell +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + Returns: + + uint32 +
                                                                            +
                                                                            +
                                                                            +
                                                                            - +

                                                                            @@ -3242,7 +3162,7 @@

                                                                            -
                                                                            +
                                                                            Full Usage: FsCell.getValueAsULong cell @@ -3270,50 +3190,49 @@

                                                                            -
                                                                            - - - - - - -

                                                                            - - Gets the value as ulong - -

                                                                            -
                                                                            -
                                                                            -
                                                                            - - cell - - : - FsCell -
                                                                            -
                                                                            -
                                                                            -
                                                                            -
                                                                            - - Returns: - - uint64 -
                                                                            -
                                                                            -
                                                                            +
                                                                            + +
                                                                            + + + + + +

                                                                            + Gets the value as ulong +

                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + cell + + : + FsCell +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + Returns: + + uint64 +
                                                                            +
                                                                            +
                                                                            +
                                                                            - +

                                                                            @@ -3322,7 +3241,7 @@

                                                                            -
                                                                            +
                                                                            Full Usage: FsCell.setValueAs value cell @@ -3358,71 +3277,77 @@

                                                                            -
                                                                            - - - - - - -

                                                                            - +

                                                                            + +
                                                                            + + + + + +

                                                                            + Sets an FsCell's value.

                                                                            FsSpreadsheet will try to translate it to the corresponding type, if it cannot, the value will be left as a string.

                                                                            -

                                                                            -
                                                                            -
                                                                            -
                                                                            - - value - - : - obj -
                                                                            -
                                                                            -
                                                                            - - cell - - : - FsCell -
                                                                            -
                                                                            -
                                                                            -
                                                                            -
                                                                            - - Returns: - - FsCell -
                                                                            -
                                                                            -
                                                                            +

                                                                            +
                                                                            + +
                                                                            +
                                                                            + + value + + : + obj +
                                                                            +
                                                                            +
                                                                            + + cell + + : + FsCell +
                                                                            +
                                                                            +
                                                                            +
                                                                            +
                                                                            + + Returns: + + FsCell +
                                                                            +
                                                                            +
                                                                            +
                                                                            -

                                                                            -
                                                                            -

                                                                            +

                                                                            + + + +
                                                                            +
                                                                              +

                                                                              Type something to start searching.

                                                                              +
                                                                              +
                                                                              + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-fscellaux.html b/reference/fsspreadsheet-fscellaux.html index 3b0b2e87..ece3e97d 100644 --- a/reference/fsspreadsheet-fscellaux.html +++ b/reference/fsspreadsheet-fscellaux.html @@ -1,62 +1,50 @@ - - + - - FsCellAux (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                              -
                                                                              - +
                                                                              -
                                                                              -
                                                                              -
                                                                              - +
                                                                              + + + + + +
                                                                              + + +
                                                                              +
                                                                              +

                                                                              FsCellAux Module

                                                                              @@ -89,9 +108,7 @@

                                                                              - - Creates an FsCell of `DataType` dataType, with value of type `string`, and `FsAddress` address. - + Creates an FsCell of `DataType` dataType, with value of type `string`, and `FsAddress` address.

                                                                              @@ -151,23 +168,6 @@

                                                                              -
                                                                              - - - - - - -

                                                                              - -

                                                                              -
                                                                              @@ -201,19 +201,24 @@

                                                                              -
                                                                              -
                                                                              -
                                                                              + + + + +
                                                                              +
                                                                                +

                                                                                Type something to start searching.

                                                                                +
                                                                                +
                                                                                + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-fscellscollection.html b/reference/fsspreadsheet-fscellscollection.html index 575388e7..795fc9bb 100644 --- a/reference/fsspreadsheet-fscellscollection.html +++ b/reference/fsspreadsheet-fscellscollection.html @@ -1,62 +1,50 @@ - - + - - FsCellsCollection (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                -
                                                                                - +
                                                                                -
                                                                                -
                                                                                -
                                                                                - +
                                                                                + + + + + +
                                                                                + + +
                                                                                +
                                                                                +

                                                                                FsCellsCollection Type

                                                                                @@ -92,9 +111,7 @@

                                                                                -

                                                                                - -

                                                                                +
                                                                                
                                                                                     
                                                                                @@ -122,7 +139,7 @@

                                                                                - +

                                                                                @@ -131,7 +148,7 @@

                                                                                -
                                                                                +
                                                                                Full Usage: FsCellsCollection() @@ -147,23 +164,6 @@

                                                                                -
                                                                                - - - - - - -

                                                                                - -

                                                                                -
                                                                                @@ -197,7 +197,7 @@

                                                                                - +

                                                                                @@ -206,7 +206,7 @@

                                                                                -
                                                                                +
                                                                                Full Usage: this.Add @@ -219,7 +219,7 @@

                                                                                cells : - seq<FsCell> + FsCell seq
                                                                                @@ -229,44 +229,45 @@

                                                                                -
                                                                                - - - - - - -

                                                                                - +

                                                                                + +
                                                                                + + + + + +

                                                                                + Adds FsCells to the FsCellsCollection. +

                                                                                +
                                                                                +
                                                                                +

                                                                                + Derives row- and columnIndeces from the FsAddress of the FsCells.

                                                                                -
                                                                                -

                                                                                - Derives row- and columnIndeces from the FsAddress of the FsCells. -

                                                                                -
                                                                                -
                                                                                - - cells - - : - seq<FsCell> -
                                                                                -
                                                                                -
                                                                                +
                                                                                +
                                                                                + + cells + + : + FsCell seq +
                                                                                +
                                                                                +
                                                                                +
                                                                                - +

                                                                                @@ -275,7 +276,7 @@

                                                                                -
                                                                                +
                                                                                Full Usage: this.Add @@ -298,44 +299,45 @@

                                                                                -
                                                                                - - - - - - -

                                                                                - +

                                                                                + +
                                                                                + + + + + +

                                                                                + Adds an FsCell to the FsCellsCollection. +

                                                                                +
                                                                                +
                                                                                +

                                                                                + Derives row- and columnIndex from the FsAddress of the FsCell.

                                                                                -
                                                                                -

                                                                                - Derives row- and columnIndex from the FsAddress of the FsCell. -

                                                                                -
                                                                                -
                                                                                - - cell - - : - FsCell -
                                                                                -
                                                                                -
                                                                                +
                                                                                +
                                                                                + + cell + + : + FsCell +
                                                                                +
                                                                                +
                                                                                +
                                                                                - +

                                                                                @@ -344,7 +346,7 @@

                                                                                -
                                                                                +
                                                                                Full Usage: this.Add @@ -383,57 +385,56 @@

                                                                                -
                                                                                - - - - - - -

                                                                                - - Adds an FsCell of given rowIndex and columnIndex to the FsCellsCollection. - -

                                                                                -
                                                                                -
                                                                                -
                                                                                - - row - - : - int32 -
                                                                                -
                                                                                -
                                                                                - - column - - : - int32 -
                                                                                -
                                                                                -
                                                                                - - cell - - : - FsCell -
                                                                                -
                                                                                -
                                                                                +
                                                                                + +
                                                                                + + + + + +

                                                                                + Adds an FsCell of given rowIndex and columnIndex to the FsCellsCollection. +

                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + row + + : + int32 +
                                                                                +
                                                                                +
                                                                                + + column + + : + int32 +
                                                                                +
                                                                                +
                                                                                + + cell + + : + FsCell +
                                                                                +
                                                                                +
                                                                                +
                                                                                - +

                                                                                @@ -442,7 +443,7 @@

                                                                                -
                                                                                +
                                                                                Full Usage: this.Clear @@ -458,40 +459,39 @@

                                                                                -
                                                                                - - - - - - -

                                                                                - - Empties the whole FsCellsCollection. - -

                                                                                -
                                                                                -
                                                                                -
                                                                                - - Returns: - - FsCellsCollection -
                                                                                -
                                                                                -
                                                                                +
                                                                                + +
                                                                                + + + + + +

                                                                                + Empties the whole FsCellsCollection. +

                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + Returns: + + FsCellsCollection +
                                                                                +
                                                                                +
                                                                                +
                                                                                - +

                                                                                @@ -500,7 +500,7 @@

                                                                                -
                                                                                +
                                                                                Full Usage: this.ContainsCellAt @@ -536,58 +536,57 @@

                                                                                -
                                                                                - - - - - - -

                                                                                - - Checks if an FsCell exists at given row- and columnIndex. - -

                                                                                -
                                                                                -
                                                                                -
                                                                                - - rowIndex - - : - int -
                                                                                -
                                                                                -
                                                                                - - colIndex - - : - int -
                                                                                -
                                                                                -
                                                                                -
                                                                                -
                                                                                - - Returns: - - bool -
                                                                                -
                                                                                -
                                                                                +
                                                                                + +
                                                                                + + + + + +

                                                                                + Checks if an FsCell exists at given row- and columnIndex. +

                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + rowIndex + + : + int +
                                                                                +
                                                                                +
                                                                                + + colIndex + + : + int +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + Returns: + + bool +
                                                                                +
                                                                                +
                                                                                +
                                                                                - +

                                                                                @@ -596,7 +595,7 @@

                                                                                -
                                                                                +
                                                                                Full Usage: this.Copy @@ -612,40 +611,39 @@

                                                                                -
                                                                                - - - - - - -

                                                                                - - Creates a deep copy of the FsCellsCollection. - -

                                                                                -
                                                                                -
                                                                                -
                                                                                - - Returns: - - FsCellsCollection -
                                                                                -
                                                                                -
                                                                                +
                                                                                + +
                                                                                + + + + + +

                                                                                + Creates a deep copy of the FsCellsCollection. +

                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + Returns: + + FsCellsCollection +
                                                                                +
                                                                                +
                                                                                +
                                                                                - +

                                                                                @@ -654,7 +652,7 @@

                                                                                -
                                                                                +
                                                                                Full Usage: this.Count @@ -667,16 +665,13 @@

                                                                                - - +

                                                                                @@ -687,7 +682,7 @@

                                                                                - +

                                                                                @@ -696,7 +691,7 @@

                                                                                -
                                                                                +
                                                                                Full Usage: this.GetCells @@ -724,7 +719,7 @@


                                                                                Returns: - seq<FsCell> + FsCell seq

                                                                                @@ -732,58 +727,57 @@

                                                                                -
                                                                                - - - - - - -

                                                                                - - Returns the FsCells from given startAddress to lastAddress. - -

                                                                                -
                                                                                -
                                                                                -
                                                                                - - startAddress - - : - FsAddress -
                                                                                -
                                                                                -
                                                                                - - lastAddress - - : - FsAddress -
                                                                                -
                                                                                -
                                                                                -
                                                                                -
                                                                                - - Returns: - - seq<FsCell> -
                                                                                -
                                                                                -
                                                                                +
                                                                                + +
                                                                                + + + + + +

                                                                                + Returns the FsCells from given startAddress to lastAddress. +

                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + startAddress + + : + FsAddress +
                                                                                +
                                                                                +
                                                                                + + lastAddress + + : + FsAddress +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + Returns: + + FsCell seq +
                                                                                +
                                                                                +
                                                                                +
                                                                                - +

                                                                                @@ -792,7 +786,7 @@

                                                                                -
                                                                                +
                                                                                Full Usage: this.GetCells @@ -836,7 +830,7 @@


                                                                                Returns: - seq<FsCell> + FsCell seq

                                                                                @@ -844,74 +838,73 @@

                                                                                -
                                                                                - - - - - - -

                                                                                - - Returns the FsCells from given rowStart to rowEnd and columnStart to columnEnd. - -

                                                                                -
                                                                                -
                                                                                -
                                                                                - - rowStart - - : - int32 -
                                                                                -
                                                                                -
                                                                                - - columnStart - - : - int32 -
                                                                                -
                                                                                -
                                                                                - - rowEnd - - : - int32 -
                                                                                -
                                                                                -
                                                                                - - columnEnd - - : - int32 -
                                                                                -
                                                                                -
                                                                                -
                                                                                -
                                                                                - - Returns: - - seq<FsCell> -
                                                                                -
                                                                                -
                                                                                +
                                                                                + +
                                                                                + + + + + +

                                                                                + Returns the FsCells from given rowStart to rowEnd and columnStart to columnEnd. +

                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + rowStart + + : + int32 +
                                                                                +
                                                                                +
                                                                                + + columnStart + + : + int32 +
                                                                                +
                                                                                +
                                                                                + + rowEnd + + : + int32 +
                                                                                +
                                                                                +
                                                                                + + columnEnd + + : + int32 +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + Returns: + + FsCell seq +
                                                                                +
                                                                                +
                                                                                +
                                                                                - +

                                                                                @@ -920,7 +913,7 @@

                                                                                -
                                                                                +
                                                                                Full Usage: this.GetCells @@ -956,7 +949,7 @@


                                                                                Returns: - seq<FsCell> + FsCell seq

                                                                                @@ -964,66 +957,65 @@

                                                                                -
                                                                                - - - - - - -

                                                                                - - Returns the FsCells from given startAddress to lastAddress and fulfilling the predicate. - -

                                                                                -
                                                                                -
                                                                                -
                                                                                - - startAddress - - : - FsAddress -
                                                                                -
                                                                                -
                                                                                - - lastAddress - - : - FsAddress -
                                                                                -
                                                                                -
                                                                                - - predicate - - : - FsCell -> bool -
                                                                                -
                                                                                -
                                                                                -
                                                                                -
                                                                                - - Returns: - - seq<FsCell> -
                                                                                -
                                                                                -
                                                                                +
                                                                                + +
                                                                                + + + + + +

                                                                                + Returns the FsCells from given startAddress to lastAddress and fulfilling the predicate. +

                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + startAddress + + : + FsAddress +
                                                                                +
                                                                                +
                                                                                + + lastAddress + + : + FsAddress +
                                                                                +
                                                                                +
                                                                                + + predicate + + : + FsCell -> bool +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + Returns: + + FsCell seq +
                                                                                +
                                                                                +
                                                                                +
                                                                                - +

                                                                                @@ -1032,7 +1024,7 @@

                                                                                -
                                                                                +
                                                                                Full Usage: this.GetCells @@ -1084,7 +1076,7 @@


                                                                                Returns: - seq<FsCell> + FsCell seq

                                                                                @@ -1092,82 +1084,81 @@

                                                                                -
                                                                                - - - - - - -

                                                                                - - Returns the FsCells from given rowStart to rowEnd and columnStart to columnEnd and fulfilling the predicate. - -

                                                                                -
                                                                                -
                                                                                -
                                                                                - - rowStart - - : - int32 -
                                                                                -
                                                                                -
                                                                                - - columnStart - - : - int32 -
                                                                                -
                                                                                -
                                                                                - - rowEnd - - : - int32 -
                                                                                -
                                                                                -
                                                                                - - columnEnd - - : - int32 -
                                                                                -
                                                                                -
                                                                                - - predicate - - : - FsCell -> bool -
                                                                                -
                                                                                -
                                                                                -
                                                                                -
                                                                                - - Returns: - - seq<FsCell> -
                                                                                -
                                                                                -
                                                                                +
                                                                                + +
                                                                                + + + + + +

                                                                                + Returns the FsCells from given rowStart to rowEnd and columnStart to columnEnd and fulfilling the predicate. +

                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + rowStart + + : + int32 +
                                                                                +
                                                                                +
                                                                                + + columnStart + + : + int32 +
                                                                                +
                                                                                +
                                                                                + + rowEnd + + : + int32 +
                                                                                +
                                                                                +
                                                                                + + columnEnd + + : + int32 +
                                                                                +
                                                                                +
                                                                                + + predicate + + : + FsCell -> bool +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + Returns: + + FsCell seq +
                                                                                +
                                                                                +
                                                                                +
                                                                                - +

                                                                                @@ -1176,7 +1167,7 @@

                                                                                -
                                                                                +
                                                                                Full Usage: this.GetCells @@ -1184,7 +1175,7 @@


                                                                                Returns: - seq<FsCell> + FsCell seq

                                                                                @@ -1192,40 +1183,39 @@

                                                                                -
                                                                                - - - - - - -

                                                                                - - Returns all FsCells of the FsCellsCollection. - -

                                                                                -
                                                                                -
                                                                                -
                                                                                - - Returns: - - seq<FsCell> -
                                                                                -
                                                                                -
                                                                                +
                                                                                + +
                                                                                + + + + + +

                                                                                + Returns all FsCells of the FsCellsCollection. +

                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + Returns: + + FsCell seq +
                                                                                +
                                                                                +
                                                                                +
                                                                                - +

                                                                                @@ -1234,7 +1224,7 @@

                                                                                -
                                                                                +
                                                                                Full Usage: this.GetCellsInColumn @@ -1254,7 +1244,7 @@


                                                                                Returns: - seq<FsCell> + FsCell seq

                                                                                @@ -1262,50 +1252,49 @@

                                                                                -
                                                                                - - - - - - -

                                                                                - - Returns all FsCells in the given columnIndex. - -

                                                                                -
                                                                                -
                                                                                -
                                                                                - - colIndex - - : - int32 -
                                                                                -
                                                                                -
                                                                                -
                                                                                -
                                                                                - - Returns: - - seq<FsCell> -
                                                                                -
                                                                                -
                                                                                +
                                                                                + +
                                                                                + + + + + +

                                                                                + Returns all FsCells in the given columnIndex. +

                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + colIndex + + : + int32 +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + Returns: + + FsCell seq +
                                                                                +
                                                                                +
                                                                                +
                                                                                - +

                                                                                @@ -1314,7 +1303,7 @@

                                                                                -
                                                                                +
                                                                                Full Usage: this.GetCellsInRow @@ -1334,7 +1323,7 @@


                                                                                Returns: - seq<FsCell> + FsCell seq

                                                                                @@ -1342,50 +1331,49 @@

                                                                                -
                                                                                - - - - - - -

                                                                                - - Returns all FsCells in the given rowIndex. - -

                                                                                -
                                                                                -
                                                                                -
                                                                                - - rowIndex - - : - int32 -
                                                                                -
                                                                                -
                                                                                -
                                                                                -
                                                                                - - Returns: - - seq<FsCell> -
                                                                                -
                                                                                -
                                                                                +
                                                                                + +
                                                                                + + + + + +

                                                                                + Returns all FsCells in the given rowIndex. +

                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + rowIndex + + : + int32 +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + Returns: + + FsCell seq +
                                                                                +
                                                                                +
                                                                                +
                                                                                - +

                                                                                @@ -1394,7 +1382,7 @@

                                                                                -
                                                                                +
                                                                                Full Usage: this.GetFirstAddress @@ -1410,40 +1398,39 @@

                                                                                -
                                                                                - - - - - - -

                                                                                - - Returns the upper left corner of the FsCellsCollection. - -

                                                                                -
                                                                                -
                                                                                -
                                                                                - - Returns: - - FsAddress -
                                                                                -
                                                                                -
                                                                                +
                                                                                + +
                                                                                + + + + + +

                                                                                + Returns the upper left corner of the FsCellsCollection. +

                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + Returns: + + FsAddress +
                                                                                +
                                                                                +
                                                                                +
                                                                                - +

                                                                                @@ -1452,7 +1439,7 @@

                                                                                -
                                                                                +
                                                                                Full Usage: this.GetLastAddress @@ -1468,40 +1455,39 @@

                                                                                -
                                                                                - - - - - - -

                                                                                - - Returns the lower right corner of the FsCellsCollection. - -

                                                                                -
                                                                                -
                                                                                -
                                                                                - - Returns: - - FsAddress -
                                                                                -
                                                                                -
                                                                                +
                                                                                + +
                                                                                + + + + + +

                                                                                + Returns the lower right corner of the FsCellsCollection. +

                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + Returns: + + FsAddress +
                                                                                +
                                                                                +
                                                                                +
                                                                                - +

                                                                                @@ -1510,7 +1496,7 @@

                                                                                -
                                                                                +
                                                                                Full Usage: this.MaxColumnNumber @@ -1526,43 +1512,44 @@

                                                                                -
                                                                                - - - - - - -

                                                                                - +

                                                                                + +
                                                                                + + + + + +

                                                                                + The highest columnIndex in The FsCellsCollection. +

                                                                                +
                                                                                +
                                                                                +

                                                                                + Do not confuse with the number of columns in the FsCellsCollection.

                                                                                -
                                                                                -

                                                                                - Do not confuse with the number of columns in the FsCellsCollection. -

                                                                                -
                                                                                -
                                                                                - - Returns: - - int32 -
                                                                                -
                                                                                -
                                                                                +
                                                                                +
                                                                                + + Returns: + + int32 +
                                                                                +
                                                                                +
                                                                                +
                                                                                - +

                                                                                @@ -1571,7 +1558,7 @@

                                                                                -
                                                                                +
                                                                                Full Usage: this.MaxRowNumber @@ -1587,43 +1574,44 @@

                                                                                -
                                                                                - - - - - - -

                                                                                - +

                                                                                + +
                                                                                + + + + + +

                                                                                + The highest rowIndex in The FsCellsCollection. +

                                                                                +
                                                                                +
                                                                                +

                                                                                + Do not confuse with the number of rows in the FsCellsCollection.

                                                                                -
                                                                                -

                                                                                - Do not confuse with the number of rows in the FsCellsCollection. -

                                                                                -
                                                                                -
                                                                                - - Returns: - - int32 -
                                                                                -
                                                                                -
                                                                                +
                                                                                +
                                                                                + + Returns: + + int32 +
                                                                                +
                                                                                +
                                                                                +
                                                                                - +

                                                                                @@ -1632,7 +1620,7 @@

                                                                                -
                                                                                +
                                                                                Full Usage: this.RemoveCellAt @@ -1663,49 +1651,48 @@

                                                                                -
                                                                                - - - - - - -

                                                                                - - Removes an FsCell of given rowIndex and columnIndex from the FsCellsCollection. - -

                                                                                -
                                                                                -
                                                                                -
                                                                                - - row - - : - int32 -
                                                                                -
                                                                                -
                                                                                - - column - - : - int32 -
                                                                                -
                                                                                -
                                                                                +
                                                                                + +
                                                                                + + + + + +

                                                                                + Removes an FsCell of given rowIndex and columnIndex from the FsCellsCollection. +

                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + row + + : + int32 +
                                                                                +
                                                                                +
                                                                                + + column + + : + int32 +
                                                                                +
                                                                                +
                                                                                +
                                                                                - +

                                                                                @@ -1714,7 +1701,7 @@

                                                                                -
                                                                                +
                                                                                Full Usage: this.RemoveValueAt @@ -1745,71 +1732,72 @@

                                                                                -
                                                                                - - - - - - -

                                                                                - +

                                                                                + +
                                                                                + + + + + +

                                                                                + Removes the value of an FsCell at given row- and columnIndex from the FsCollection. -

                                                                                -
                                                                                -
                                                                                -
                                                                                - - rowIndex - - : - int -
                                                                                -
                                                                                -
                                                                                - - colIndex - - : - int -
                                                                                -
                                                                                -
                                                                                - - - - - - - - - -
                                                                                - - ArgumentNullException - - - if rowIndex or columnIndex is null. -
                                                                                - - KeyNotFoundException - - - if row or column at the given index does not exist. -
                                                                                +

                                                                                +
                                                                                + +
                                                                                +
                                                                                + + rowIndex + + : + int +
                                                                                +
                                                                                +
                                                                                + + colIndex + + : + int +
                                                                                +
                                                                                +
                                                                                + + + + + + + + + +
                                                                                + + ArgumentNullException + + + if rowIndex or columnIndex is null. +
                                                                                + + KeyNotFoundException + + + if row or column at the given index does not exist. +
                                                                                +
                                                                                - +

                                                                                @@ -1818,7 +1806,7 @@

                                                                                -
                                                                                +
                                                                                Full Usage: this.TryGetCell @@ -1854,58 +1842,57 @@

                                                                                -
                                                                                - - - - - - -

                                                                                - - Returns the FsCell at given rowIndex and columnIndex if it exists. Otherwise returns None. - -

                                                                                -
                                                                                -
                                                                                -
                                                                                - - row - - : - int32 -
                                                                                -
                                                                                -
                                                                                - - column - - : - int32 -
                                                                                -
                                                                                -
                                                                                -
                                                                                -
                                                                                - - Returns: - - FsCell option -
                                                                                -
                                                                                -
                                                                                +
                                                                                + +
                                                                                + + + + + +

                                                                                + Returns the FsCell at given rowIndex and columnIndex if it exists. Otherwise returns None. +

                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + row + + : + int32 +
                                                                                +
                                                                                +
                                                                                + + column + + : + int32 +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + Returns: + + FsCell option +
                                                                                +
                                                                                +
                                                                                +
                                                                                - +

                                                                                @@ -1914,7 +1901,7 @@

                                                                                -
                                                                                +
                                                                                Full Usage: this.TryRemoveValueAt @@ -1945,58 +1932,59 @@

                                                                                -
                                                                                - - - - - - -

                                                                                - +

                                                                                + +
                                                                                + + + + + +

                                                                                + Removes the value of an FsCell at given row- and columnIndex if it exists from the FsCollection. +

                                                                                +
                                                                                +
                                                                                +

                                                                                + Does nothing if the row or column of given index does not exist.

                                                                                -
                                                                                -

                                                                                - Does nothing if the row or column of given index does not exist. -

                                                                                -
                                                                                -
                                                                                - - rowIndex - - : - int -
                                                                                -
                                                                                -
                                                                                - - colIndex - - : - int -
                                                                                -
                                                                                -
                                                                                - - - - - -
                                                                                - - ArgumentNullException - - - if columnIndex is null. -
                                                                                +
                                                                                +
                                                                                + + rowIndex + + : + int +
                                                                                +
                                                                                +
                                                                                + + colIndex + + : + int +
                                                                                +
                                                                                +
                                                                                + + + + + +
                                                                                + + ArgumentNullException + + + if columnIndex is null. +
                                                                                + @@ -2021,7 +2009,7 @@

                                                                                - +

                                                                                @@ -2030,7 +2018,7 @@

                                                                                -
                                                                                +
                                                                                Full Usage: FsCellsCollection.addCell cell cellsCollection @@ -2066,61 +2054,62 @@

                                                                                -
                                                                                - - - - - - -

                                                                                - +

                                                                                + +
                                                                                + + + + + +

                                                                                + Adds an FsCell to an FsCellsCollection. +

                                                                                +
                                                                                +
                                                                                +

                                                                                + Derives row- and columnIndex from the FsAddress of the FsCell.

                                                                                -
                                                                                -

                                                                                - Derives row- and columnIndex from the FsAddress of the FsCell. -

                                                                                -
                                                                                -
                                                                                - - cell - - : - FsCell -
                                                                                -
                                                                                -
                                                                                - - cellsCollection - - : - FsCellsCollection -
                                                                                -
                                                                                -
                                                                                -
                                                                                -
                                                                                - - Returns: - - FsCellsCollection -
                                                                                -
                                                                                -
                                                                                +
                                                                                +
                                                                                + + cell + + : + FsCell +
                                                                                +
                                                                                +
                                                                                + + cellsCollection + + : + FsCellsCollection +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + Returns: + + FsCellsCollection +
                                                                                +
                                                                                +
                                                                                +
                                                                                - +

                                                                                @@ -2129,7 +2118,7 @@

                                                                                -
                                                                                +
                                                                                Full Usage: FsCellsCollection.addCellWithIndeces rowIndex colIndex cell cellsCollection @@ -2176,65 +2165,64 @@

                                                                                -
                                                                                - - - - - - -

                                                                                - - Adds an FsCell of given rowIndex and columnIndex to an FsCellsCollection. - -

                                                                                -
                                                                                -
                                                                                -
                                                                                - - rowIndex - - : - int32 -
                                                                                -
                                                                                -
                                                                                - - colIndex - - : - int32 -
                                                                                -
                                                                                -
                                                                                - - cell - - : - FsCell -
                                                                                -
                                                                                -
                                                                                - - cellsCollection - - : - FsCellsCollection -
                                                                                -
                                                                                -
                                                                                +
                                                                                + +
                                                                                + + + + + +

                                                                                + Adds an FsCell of given rowIndex and columnIndex to an FsCellsCollection. +

                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + rowIndex + + : + int32 +
                                                                                +
                                                                                +
                                                                                + + colIndex + + : + int32 +
                                                                                +
                                                                                +
                                                                                + + cell + + : + FsCell +
                                                                                +
                                                                                +
                                                                                + + cellsCollection + + : + FsCellsCollection +
                                                                                +
                                                                                +
                                                                                +
                                                                                - +

                                                                                @@ -2243,7 +2231,7 @@

                                                                                -
                                                                                +
                                                                                Full Usage: FsCellsCollection.addCells cells cellsCollection @@ -2256,7 +2244,7 @@

                                                                                cells : - seq<FsCell> + FsCell seq
                                                                                @@ -2279,61 +2267,62 @@

                                                                                -
                                                                                - - - - - - -

                                                                                - +

                                                                                + +
                                                                                + + + + + +

                                                                                + Adds FsCells to an FsCellsCollection. +

                                                                                +
                                                                                +
                                                                                +

                                                                                + Derives row- and columnIndeces from the FsAddress of the FsCells.

                                                                                -
                                                                                -

                                                                                - Derives row- and columnIndeces from the FsAddress of the FsCells. -

                                                                                -
                                                                                -
                                                                                - - cells - - : - seq<FsCell> -
                                                                                -
                                                                                -
                                                                                - - cellsCollection - - : - FsCellsCollection -
                                                                                -
                                                                                -
                                                                                -
                                                                                -
                                                                                - - Returns: - - FsCellsCollection -
                                                                                -
                                                                                -
                                                                                +
                                                                                +
                                                                                + + cells + + : + FsCell seq +
                                                                                +
                                                                                +
                                                                                + + cellsCollection + + : + FsCellsCollection +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + Returns: + + FsCellsCollection +
                                                                                +
                                                                                +
                                                                                +
                                                                                - +

                                                                                @@ -2342,7 +2331,7 @@

                                                                                -
                                                                                +
                                                                                Full Usage: FsCellsCollection.containsCellAt rowIndex colIndex cellsCollection @@ -2386,66 +2375,65 @@

                                                                                -
                                                                                - - - - - - -

                                                                                - - Checks if an FsCell exists at given row- and columnIndex of a given FsCellsCollection. - -

                                                                                -
                                                                                -
                                                                                -
                                                                                - - rowIndex - - : - int -
                                                                                -
                                                                                -
                                                                                - - colIndex - - : - int -
                                                                                -
                                                                                -
                                                                                - - cellsCollection - - : - FsCellsCollection -
                                                                                -
                                                                                -
                                                                                -
                                                                                -
                                                                                - - Returns: - - bool -
                                                                                -
                                                                                -
                                                                                +
                                                                                + +
                                                                                + + + + + +

                                                                                + Checks if an FsCell exists at given row- and columnIndex of a given FsCellsCollection. +

                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + rowIndex + + : + int +
                                                                                +
                                                                                +
                                                                                + + colIndex + + : + int +
                                                                                +
                                                                                +
                                                                                + + cellsCollection + + : + FsCellsCollection +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + Returns: + + bool +
                                                                                +
                                                                                +
                                                                                +
                                                                                - +

                                                                                @@ -2454,7 +2442,7 @@

                                                                                -
                                                                                +
                                                                                Full Usage: FsCellsCollection.copy cellsCollection @@ -2482,50 +2470,49 @@

                                                                                -
                                                                                - - - - - - -

                                                                                - - Returns a deep copy of a given FsCellsCollection. - -

                                                                                -
                                                                                -
                                                                                -
                                                                                - - cellsCollection - - : - FsCellsCollection -
                                                                                -
                                                                                -
                                                                                -
                                                                                -
                                                                                - - Returns: - - FsCellsCollection -
                                                                                -
                                                                                -
                                                                                +
                                                                                + +
                                                                                + + + + + +

                                                                                + Returns a deep copy of a given FsCellsCollection. +

                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + cellsCollection + + : + FsCellsCollection +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + Returns: + + FsCellsCollection +
                                                                                +
                                                                                +
                                                                                +
                                                                                - +

                                                                                @@ -2534,7 +2521,7 @@

                                                                                -
                                                                                +
                                                                                Full Usage: FsCellsCollection.createFromCells cells @@ -2547,7 +2534,7 @@

                                                                                cells : - seq<FsCell> + FsCell seq
                                                                                @@ -2562,53 +2549,54 @@

                                                                                -
                                                                                - - - - - - -

                                                                                - +

                                                                                + +
                                                                                + + + + + +

                                                                                + Creates an FsCellsCollection from the given FsCells. +

                                                                                +
                                                                                +
                                                                                +

                                                                                + Derives row- and columnIndices from the FsAddress of the FsCells.

                                                                                -
                                                                                -

                                                                                - Derives row- and columnIndices from the FsAddress of the FsCells. -

                                                                                -
                                                                                -
                                                                                - - cells - - : - seq<FsCell> -
                                                                                -
                                                                                -
                                                                                -
                                                                                -
                                                                                - - Returns: - - FsCellsCollection -
                                                                                -
                                                                                -
                                                                                +
                                                                                +
                                                                                + + cells + + : + FsCell seq +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + Returns: + + FsCellsCollection +
                                                                                +
                                                                                +
                                                                                +
                                                                                - +

                                                                                @@ -2617,7 +2605,7 @@

                                                                                -
                                                                                +
                                                                                Full Usage: FsCellsCollection.filterCellsFromTo rowStart columnStart rowEnd columnEnd predicate cellsCollection @@ -2677,7 +2665,7 @@


                                                                                Returns: - seq<FsCell> + FsCell seq

                                                                                @@ -2685,90 +2673,89 @@

                                                                                -
                                                                                - - - - - - -

                                                                                - - Returns the FsCells from an FsCellsCollection with given rowStart to rowEnd and columnStart to columnEnd and fulfilling the predicate. - -

                                                                                -
                                                                                -
                                                                                -
                                                                                - - rowStart - - : - int32 -
                                                                                -
                                                                                -
                                                                                - - columnStart - - : - int32 -
                                                                                -
                                                                                -
                                                                                - - rowEnd - - : - int32 -
                                                                                -
                                                                                -
                                                                                - - columnEnd - - : - int32 -
                                                                                -
                                                                                -
                                                                                - - predicate - - : - FsCell -> bool -
                                                                                -
                                                                                -
                                                                                - - cellsCollection - - : - FsCellsCollection -
                                                                                -
                                                                                -
                                                                                -
                                                                                -
                                                                                - - Returns: - - seq<FsCell> -
                                                                                -
                                                                                -
                                                                                +
                                                                                + +
                                                                                + + + + + +

                                                                                + Returns the FsCells from an FsCellsCollection with given rowStart to rowEnd and columnStart to columnEnd and fulfilling the predicate. +

                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + rowStart + + : + int32 +
                                                                                +
                                                                                +
                                                                                + + columnStart + + : + int32 +
                                                                                +
                                                                                +
                                                                                + + rowEnd + + : + int32 +
                                                                                +
                                                                                +
                                                                                + + columnEnd + + : + int32 +
                                                                                +
                                                                                +
                                                                                + + predicate + + : + FsCell -> bool +
                                                                                +
                                                                                +
                                                                                + + cellsCollection + + : + FsCellsCollection +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + Returns: + + FsCell seq +
                                                                                +
                                                                                +
                                                                                +
                                                                                - +

                                                                                @@ -2777,7 +2764,7 @@

                                                                                -
                                                                                +
                                                                                Full Usage: FsCellsCollection.filterCellsFromToAddress startAddress lastAddress predicate cellsCollection @@ -2821,7 +2808,7 @@


                                                                                Returns: - seq<FsCell> + FsCell seq

                                                                                @@ -2829,74 +2816,73 @@

                                                                                -
                                                                                - - - - - - -

                                                                                - - Returns the FsCells from an FsCellsCollection with given startAddress to lastAddress and fulfilling the predicate. - -

                                                                                -
                                                                                -
                                                                                -
                                                                                - - startAddress - - : - FsAddress -
                                                                                -
                                                                                -
                                                                                - - lastAddress - - : - FsAddress -
                                                                                -
                                                                                -
                                                                                - - predicate - - : - FsCell -> bool -
                                                                                -
                                                                                -
                                                                                - - cellsCollection - - : - FsCellsCollection -
                                                                                -
                                                                                -
                                                                                -
                                                                                -
                                                                                - - Returns: - - seq<FsCell> -
                                                                                -
                                                                                -
                                                                                +
                                                                                + +
                                                                                + + + + + +

                                                                                + Returns the FsCells from an FsCellsCollection with given startAddress to lastAddress and fulfilling the predicate. +

                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + startAddress + + : + FsAddress +
                                                                                +
                                                                                +
                                                                                + + lastAddress + + : + FsAddress +
                                                                                +
                                                                                +
                                                                                + + predicate + + : + FsCell -> bool +
                                                                                +
                                                                                +
                                                                                + + cellsCollection + + : + FsCellsCollection +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + Returns: + + FsCell seq +
                                                                                +
                                                                                +
                                                                                +
                                                                                - +

                                                                                @@ -2905,7 +2891,7 @@

                                                                                -
                                                                                +
                                                                                Full Usage: FsCellsCollection.getCells cellsCollection @@ -2925,7 +2911,7 @@


                                                                                Returns: - seq<FsCell> + FsCell seq

                                                                                @@ -2933,50 +2919,49 @@

                                                                                -
                                                                                - - - - - - -

                                                                                - - Returns all FsCells of the FsCellsCollection. - -

                                                                                -
                                                                                -
                                                                                -
                                                                                - - cellsCollection - - : - FsCellsCollection -
                                                                                -
                                                                                -
                                                                                -
                                                                                -
                                                                                - - Returns: - - seq<FsCell> -
                                                                                -
                                                                                -
                                                                                +
                                                                                + +
                                                                                + + + + + +

                                                                                + Returns all FsCells of the FsCellsCollection. +

                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + cellsCollection + + : + FsCellsCollection +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + Returns: + + FsCell seq +
                                                                                +
                                                                                +
                                                                                +
                                                                                - +

                                                                                @@ -2985,7 +2970,7 @@

                                                                                -
                                                                                +
                                                                                Full Usage: FsCellsCollection.getCellsFromTo rowStart columnStart rowEnd columnEnd cellsCollection @@ -3037,7 +3022,7 @@


                                                                                Returns: - seq<FsCell> + FsCell seq

                                                                                @@ -3045,82 +3030,81 @@

                                                                                -
                                                                                - - - - - - -

                                                                                - - Returns the FsCells from an FsCellsCollection with given rowStart to rowEnd and columnStart to columnEnd. - -

                                                                                -
                                                                                -
                                                                                -
                                                                                - - rowStart - - : - int32 -
                                                                                -
                                                                                -
                                                                                - - columnStart - - : - int32 -
                                                                                -
                                                                                -
                                                                                - - rowEnd - - : - int32 -
                                                                                -
                                                                                -
                                                                                - - columnEnd - - : - int32 -
                                                                                -
                                                                                -
                                                                                - - cellsCollection - - : - FsCellsCollection -
                                                                                -
                                                                                -
                                                                                -
                                                                                -
                                                                                - - Returns: - - seq<FsCell> -
                                                                                -
                                                                                -
                                                                                +
                                                                                + +
                                                                                + + + + + +

                                                                                + Returns the FsCells from an FsCellsCollection with given rowStart to rowEnd and columnStart to columnEnd. +

                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + rowStart + + : + int32 +
                                                                                +
                                                                                +
                                                                                + + columnStart + + : + int32 +
                                                                                +
                                                                                +
                                                                                + + rowEnd + + : + int32 +
                                                                                +
                                                                                +
                                                                                + + columnEnd + + : + int32 +
                                                                                +
                                                                                +
                                                                                + + cellsCollection + + : + FsCellsCollection +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + Returns: + + FsCell seq +
                                                                                +
                                                                                +
                                                                                +
                                                                                - +

                                                                                @@ -3129,7 +3113,7 @@

                                                                                -
                                                                                +
                                                                                Full Usage: FsCellsCollection.getCellsFromToAddress startAddress lastAddress cellsCollection @@ -3165,7 +3149,7 @@


                                                                                Returns: - seq<FsCell> + FsCell seq

                                                                                @@ -3173,66 +3157,65 @@

                                                                                -
                                                                                - - - - - - -

                                                                                - - Returns the FsCells from an FsCellsCollection with given startAddress to lastAddress. - -

                                                                                -
                                                                                -
                                                                                -
                                                                                - - startAddress - - : - FsAddress -
                                                                                -
                                                                                -
                                                                                - - lastAddress - - : - FsAddress -
                                                                                -
                                                                                -
                                                                                - - cellsCollection - - : - FsCellsCollection -
                                                                                -
                                                                                -
                                                                                -
                                                                                -
                                                                                - - Returns: - - seq<FsCell> -
                                                                                -
                                                                                -
                                                                                +
                                                                                + +
                                                                                + + + + + +

                                                                                + Returns the FsCells from an FsCellsCollection with given startAddress to lastAddress. +

                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + startAddress + + : + FsAddress +
                                                                                +
                                                                                +
                                                                                + + lastAddress + + : + FsAddress +
                                                                                +
                                                                                +
                                                                                + + cellsCollection + + : + FsCellsCollection +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + Returns: + + FsCell seq +
                                                                                +
                                                                                +
                                                                                +
                                                                                - +

                                                                                @@ -3241,7 +3224,7 @@

                                                                                -
                                                                                +
                                                                                Full Usage: FsCellsCollection.getCellsInColumn colIndex cellsCollection @@ -3269,7 +3252,7 @@


                                                                                Returns: - seq<FsCell> + FsCell seq

                                                                                @@ -3277,58 +3260,57 @@

                                                                                -
                                                                                - - - - - - -

                                                                                - - Returns all FsCells in an FsCellsCollection with the given columnIndex. - -

                                                                                -
                                                                                -
                                                                                -
                                                                                - - colIndex - - : - int32 -
                                                                                -
                                                                                -
                                                                                - - cellsCollection - - : - FsCellsCollection -
                                                                                -
                                                                                -
                                                                                -
                                                                                -
                                                                                - - Returns: - - seq<FsCell> -
                                                                                -
                                                                                -
                                                                                +
                                                                                + +
                                                                                + + + + + +

                                                                                + Returns all FsCells in an FsCellsCollection with the given columnIndex. +

                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + colIndex + + : + int32 +
                                                                                +
                                                                                +
                                                                                + + cellsCollection + + : + FsCellsCollection +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + Returns: + + FsCell seq +
                                                                                +
                                                                                +
                                                                                +
                                                                                - +

                                                                                @@ -3337,7 +3319,7 @@

                                                                                -
                                                                                +
                                                                                Full Usage: FsCellsCollection.getCellsInRow rowIndex cellsCollection @@ -3365,7 +3347,7 @@


                                                                                Returns: - seq<FsCell> + FsCell seq

                                                                                @@ -3373,58 +3355,57 @@

                                                                                -
                                                                                - - - - - - -

                                                                                - - Returns all FsCells in an FsCellsCollection with the given rowIndex. - -

                                                                                -
                                                                                -
                                                                                -
                                                                                - - rowIndex - - : - int32 -
                                                                                -
                                                                                -
                                                                                - - cellsCollection - - : - FsCellsCollection -
                                                                                -
                                                                                -
                                                                                -
                                                                                -
                                                                                - - Returns: - - seq<FsCell> -
                                                                                -
                                                                                -
                                                                                +
                                                                                + +
                                                                                + + + + + +

                                                                                + Returns all FsCells in an FsCellsCollection with the given rowIndex. +

                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + rowIndex + + : + int32 +
                                                                                +
                                                                                +
                                                                                + + cellsCollection + + : + FsCellsCollection +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + Returns: + + FsCell seq +
                                                                                +
                                                                                +
                                                                                +
                                                                                - +

                                                                                @@ -3433,7 +3414,7 @@

                                                                                -
                                                                                +
                                                                                Full Usage: FsCellsCollection.getFirstAddress cells @@ -3461,50 +3442,49 @@

                                                                                -
                                                                                - - - - - - -

                                                                                - - Returns the upper left corner of a given FsCellsCollection. - -

                                                                                -
                                                                                -
                                                                                -
                                                                                - - cells - - : - FsCellsCollection -
                                                                                -
                                                                                -
                                                                                -
                                                                                -
                                                                                - - Returns: - - FsAddress -
                                                                                -
                                                                                -
                                                                                +
                                                                                + +
                                                                                + + + + + +

                                                                                + Returns the upper left corner of a given FsCellsCollection. +

                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + cells + + : + FsCellsCollection +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + Returns: + + FsAddress +
                                                                                +
                                                                                +
                                                                                +
                                                                                - +

                                                                                @@ -3513,7 +3493,7 @@

                                                                                -
                                                                                +
                                                                                Full Usage: FsCellsCollection.getLastAddress cells @@ -3541,50 +3521,49 @@

                                                                                -
                                                                                - - - - - - -

                                                                                - - Returns the lower right corner of a given FsCellsCollection. - -

                                                                                -
                                                                                -
                                                                                -
                                                                                - - cells - - : - FsCellsCollection -
                                                                                -
                                                                                -
                                                                                -
                                                                                -
                                                                                - - Returns: - - FsAddress -
                                                                                -
                                                                                -
                                                                                +
                                                                                + +
                                                                                + + + + + +

                                                                                + Returns the lower right corner of a given FsCellsCollection. +

                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + cells + + : + FsCellsCollection +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + Returns: + + FsAddress +
                                                                                +
                                                                                +
                                                                                +
                                                                                - +

                                                                                @@ -3593,7 +3572,7 @@

                                                                                -
                                                                                +
                                                                                Full Usage: FsCellsCollection.removeCellAt rowIndex colIndex cellsCollection @@ -3637,66 +3616,65 @@

                                                                                -
                                                                                - - - - - - -

                                                                                - - Removes an FsCell of given rowIndex and columnIndex from an FsCellsCollection. - -

                                                                                -
                                                                                -
                                                                                -
                                                                                - - rowIndex - - : - int32 -
                                                                                -
                                                                                -
                                                                                - - colIndex - - : - int32 -
                                                                                -
                                                                                -
                                                                                - - cellsCollection - - : - FsCellsCollection -
                                                                                -
                                                                                -
                                                                                -
                                                                                -
                                                                                - - Returns: - - FsCellsCollection -
                                                                                -
                                                                                -
                                                                                +
                                                                                + +
                                                                                + + + + + +

                                                                                + Removes an FsCell of given rowIndex and columnIndex from an FsCellsCollection. +

                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + rowIndex + + : + int32 +
                                                                                +
                                                                                +
                                                                                + + colIndex + + : + int32 +
                                                                                +
                                                                                +
                                                                                + + cellsCollection + + : + FsCellsCollection +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + Returns: + + FsCellsCollection +
                                                                                +
                                                                                +
                                                                                +
                                                                                - +

                                                                                @@ -3705,7 +3683,7 @@

                                                                                -
                                                                                +
                                                                                Full Usage: FsCellsCollection.removeValueAt rowIndex colIndex cellsCollection @@ -3749,88 +3727,89 @@

                                                                                -
                                                                                - - - - - - -

                                                                                - +

                                                                                + +
                                                                                + + + + + +

                                                                                + Removes the value of an FsCell at given row- and columnIndex from a given FsCollection. -

                                                                                -
                                                                                -
                                                                                -
                                                                                - - rowIndex - - : - int -
                                                                                -
                                                                                -
                                                                                - - colIndex - - : - int -
                                                                                -
                                                                                -
                                                                                - - cellsCollection - - : - FsCellsCollection -
                                                                                -
                                                                                -
                                                                                -
                                                                                -
                                                                                - - Returns: - - FsCellsCollection -
                                                                                -
                                                                                -
                                                                                - - - - - - - - - -
                                                                                - - ArgumentNullException - - - if rowIndex or columnIndex is null. -
                                                                                - - KeyNotFoundException - - - if row or column at the given index does not exist. -
                                                                                +

                                                                                +
                                                                                + +
                                                                                +
                                                                                + + rowIndex + + : + int +
                                                                                +
                                                                                +
                                                                                + + colIndex + + : + int +
                                                                                +
                                                                                +
                                                                                + + cellsCollection + + : + FsCellsCollection +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + Returns: + + FsCellsCollection +
                                                                                +
                                                                                +
                                                                                + + + + + + + + + +
                                                                                + + ArgumentNullException + + + if rowIndex or columnIndex is null. +
                                                                                + + KeyNotFoundException + + + if row or column at the given index does not exist. +
                                                                                +
                                                                                - +

                                                                                @@ -3839,7 +3818,7 @@

                                                                                -
                                                                                +
                                                                                Full Usage: FsCellsCollection.tryGetCell rowIndex colIndex cellsCollection @@ -3883,66 +3862,65 @@

                                                                                -
                                                                                - - - - - - -

                                                                                - - Returns the FsCell from an FsCellsCollection at given rowIndex and columnIndex if it exists. Otherwise returns None. - -

                                                                                -
                                                                                -
                                                                                -
                                                                                - - rowIndex - - : - int32 -
                                                                                -
                                                                                -
                                                                                - - colIndex - - : - int32 -
                                                                                -
                                                                                -
                                                                                - - cellsCollection - - : - FsCellsCollection -
                                                                                -
                                                                                -
                                                                                -
                                                                                -
                                                                                - - Returns: - - FsCell option -
                                                                                -
                                                                                -
                                                                                +
                                                                                + +
                                                                                + + + + + +

                                                                                + Returns the FsCell from an FsCellsCollection at given rowIndex and columnIndex if it exists. Otherwise returns None. +

                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + rowIndex + + : + int32 +
                                                                                +
                                                                                +
                                                                                + + colIndex + + : + int32 +
                                                                                +
                                                                                +
                                                                                + + cellsCollection + + : + FsCellsCollection +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + Returns: + + FsCell option +
                                                                                +
                                                                                +
                                                                                +
                                                                                - +

                                                                                @@ -3951,7 +3929,7 @@

                                                                                -
                                                                                +
                                                                                Full Usage: FsCellsCollection.tryRemoveValueAt rowIndex colIndex cellsCollection @@ -3995,82 +3973,88 @@

                                                                                -
                                                                                - - - - - - -

                                                                                - +

                                                                                + +
                                                                                + + + + + +

                                                                                + Removes the value of an FsCell at given row- and columnIndex if it exists from a given FsCollection. +

                                                                                +
                                                                                +
                                                                                +

                                                                                + Does nothing if the row or column of given index does not exist.

                                                                                -
                                                                                -

                                                                                - Does nothing if the row or column of given index does not exist. -

                                                                                -
                                                                                -
                                                                                - - rowIndex - - : - int -
                                                                                -
                                                                                -
                                                                                - - colIndex - - : - int -
                                                                                -
                                                                                -
                                                                                - - cellsCollection - - : - FsCellsCollection -
                                                                                -
                                                                                -
                                                                                -
                                                                                -
                                                                                - - Returns: - - FsCellsCollection -
                                                                                -
                                                                                -
                                                                                +
                                                                                +
                                                                                + + rowIndex + + : + int +
                                                                                +
                                                                                +
                                                                                + + colIndex + + : + int +
                                                                                +
                                                                                +
                                                                                + + cellsCollection + + : + FsCellsCollection +
                                                                                +
                                                                                +
                                                                                +
                                                                                +
                                                                                + + Returns: + + FsCellsCollection +
                                                                                +
                                                                                +
                                                                                +
                                                                                -

                                                                                -
                                                                                -

                                                                                +

                                                                                + + + +
                                                                                +
                                                                                  +

                                                                                  Type something to start searching.

                                                                                  +
                                                                                  +
                                                                                  + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-fscolumn.html b/reference/fsspreadsheet-fscolumn.html index 5e89163d..07ff58c3 100644 --- a/reference/fsspreadsheet-fscolumn.html +++ b/reference/fsspreadsheet-fscolumn.html @@ -1,62 +1,50 @@ - - + - - FsColumn (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                  -
                                                                                  - +
                                                                                  -
                                                                                  -
                                                                                  -
                                                                                  - +
                                                                                  + + + + + +
                                                                                  + + +
                                                                                  +
                                                                                  +

                                                                                  FsColumn Type

                                                                                  @@ -91,9 +110,9 @@

                                                                                  All Interfaces: - IEnumerable<FsCell> + IEnumerable<FsCell> , - IEnumerable + IEnumerable
                                                                                  @@ -133,7 +152,7 @@

                                                                                  - +

                                                                                  @@ -142,7 +161,7 @@

                                                                                  -
                                                                                  +
                                                                                  Full Usage: FsColumn(rangeAddress, cells) @@ -178,23 +197,6 @@

                                                                                  -
                                                                                  - - - - - - -

                                                                                  - -

                                                                                  -
                                                                                  @@ -246,7 +248,7 @@

                                                                                  - +

                                                                                  @@ -255,7 +257,7 @@

                                                                                  -
                                                                                  +
                                                                                  Full Usage: this.Cells @@ -263,7 +265,7 @@


                                                                                  Returns: - seq<FsCell> + FsCell seq

                                                                                  @@ -271,40 +273,39 @@

                                                                                  -
                                                                                  - - - - - - -

                                                                                  - - The associated FsCells. - -

                                                                                  -
                                                                                  -
                                                                                  -
                                                                                  - - Returns: - - seq<FsCell> -
                                                                                  -
                                                                                  -
                                                                                  +
                                                                                  + +
                                                                                  + + + + + +

                                                                                  + The associated FsCells. +

                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  + + Returns: + + FsCell seq +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  - +

                                                                                  @@ -313,7 +314,7 @@

                                                                                  -
                                                                                  +
                                                                                  Full Usage: this.Copy @@ -329,40 +330,39 @@

                                                                                  -
                                                                                  - - - - - - -

                                                                                  - - Creates a deep copy of this FsColumn. - -

                                                                                  -
                                                                                  -
                                                                                  -
                                                                                  - - Returns: - - FsColumn -
                                                                                  -
                                                                                  -
                                                                                  +
                                                                                  + +
                                                                                  + + + + + +

                                                                                  + Creates a deep copy of this FsColumn. +

                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  + + Returns: + + FsColumn +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  - +

                                                                                  @@ -371,7 +371,7 @@

                                                                                  -
                                                                                  +
                                                                                  Full Usage: this.HasCellAt @@ -401,54 +401,55 @@

                                                                                  -
                                                                                  - - - - - - -

                                                                                  - +

                                                                                  + +
                                                                                  + + + + + +

                                                                                  + Checks if there is an FsCell at given row index. -

                                                                                  -
                                                                                  -
                                                                                  -
                                                                                  - - rowIndex - - : - int -
                                                                                  -
                                                                                  -

                                                                                  - The number of the row where the presence of an FsCell shall be checked. -

                                                                                  -
                                                                                  -
                                                                                  -
                                                                                  -
                                                                                  - - Returns: - - bool -
                                                                                  -
                                                                                  -
                                                                                  +

                                                                                  +
                                                                                  + +
                                                                                  +
                                                                                  + + rowIndex + + : + int +
                                                                                  +
                                                                                  +

                                                                                  + The number of the row where the presence of an FsCell shall be checked. +

                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  + + Returns: + + bool +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  - +

                                                                                  @@ -457,7 +458,7 @@

                                                                                  -
                                                                                  +
                                                                                  Full Usage: this.Index @@ -470,21 +471,16 @@

                                                                                  - - +

                                                                                  - - The index of the FsColumn. - + The index of the FsColumn.

                                                                                  @@ -492,7 +488,7 @@

                                                                                  - +

                                                                                  @@ -501,7 +497,7 @@

                                                                                  -
                                                                                  +
                                                                                  Full Usage: this[rowIndex] @@ -529,50 +525,49 @@

                                                                                  -
                                                                                  - - - - - - -

                                                                                  - - Returns the FsCell at rowIndex. - -

                                                                                  -
                                                                                  -
                                                                                  -
                                                                                  - - rowIndex - - : - int -
                                                                                  -
                                                                                  -
                                                                                  -
                                                                                  -
                                                                                  - - Returns: - - FsCell -
                                                                                  -
                                                                                  -
                                                                                  +
                                                                                  + +
                                                                                  + + + + + +

                                                                                  + Returns the FsCell at rowIndex. +

                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  + + rowIndex + + : + int +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  + + Returns: + + FsCell +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  - +

                                                                                  @@ -581,7 +576,7 @@

                                                                                  -
                                                                                  +
                                                                                  Full Usage: this.MaxRowIndex @@ -597,40 +592,39 @@

                                                                                  -
                                                                                  - - - - - - -

                                                                                  - - The number of the highest row index of the FsColumn where an FsCell exists. - -

                                                                                  -
                                                                                  -
                                                                                  -
                                                                                  - - Returns: - - int -
                                                                                  -
                                                                                  -
                                                                                  +
                                                                                  + +
                                                                                  + + + + + +

                                                                                  + The number of the highest row index of the FsColumn where an FsCell exists. +

                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  + + Returns: + + int +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  - +

                                                                                  @@ -639,7 +633,7 @@

                                                                                  -
                                                                                  +
                                                                                  Full Usage: this.MinRowIndex @@ -655,40 +649,39 @@

                                                                                  -
                                                                                  - - - - - - -

                                                                                  - - The number of the lowest row index of the FsColumn where an FsCell exists. - -

                                                                                  -
                                                                                  -
                                                                                  -
                                                                                  - - Returns: - - int -
                                                                                  -
                                                                                  -
                                                                                  +
                                                                                  + +
                                                                                  + + + + + +

                                                                                  + The number of the lowest row index of the FsColumn where an FsCell exists. +

                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  + + Returns: + + int +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  - +

                                                                                  @@ -697,7 +690,7 @@

                                                                                  -
                                                                                  +
                                                                                  Full Usage: this.ToDenseColumn @@ -710,23 +703,18 @@

                                                                                  - - +

                                                                                  - - Transforms the FsColumn into a dense FsColumn. + Transforms the FsColumn into a dense FsColumn. FsColumns are sparse by default. This means there are no FsCells present between positions with that are filled with FsCells. In dense FsColumns, such "empty positions" are then filled with empty FsCells. -

                                                                                  @@ -734,7 +722,7 @@

                                                                                  - +

                                                                                  @@ -743,7 +731,7 @@

                                                                                  -
                                                                                  +
                                                                                  Full Usage: this.TryItem @@ -773,48 +761,49 @@

                                                                                  -
                                                                                  - - - - - - -

                                                                                  - +

                                                                                  + +
                                                                                  + + + + + +

                                                                                  + Returns the FsCell at the given rowIndex if it exists. Else returns None. -

                                                                                  -
                                                                                  -
                                                                                  -
                                                                                  - - rowIndex - - : - int -
                                                                                  -
                                                                                  -

                                                                                  - The number of the column where the FsCell shall be retrieved. -

                                                                                  -
                                                                                  -
                                                                                  -
                                                                                  -
                                                                                  - - Returns: - - FsCell option -
                                                                                  -
                                                                                  -
                                                                                  +

                                                                                  +
                                                                                  + +
                                                                                  +
                                                                                  + + rowIndex + + : + int +
                                                                                  +
                                                                                  +

                                                                                  + The number of the column where the FsCell shall be retrieved. +

                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  + + Returns: + + FsCell option +
                                                                                  +
                                                                                  +
                                                                                  + @@ -839,7 +828,7 @@

                                                                                  - +

                                                                                  @@ -848,7 +837,7 @@

                                                                                  -
                                                                                  +
                                                                                  Full Usage: FsColumn.copy column @@ -876,50 +865,49 @@

                                                                                  -
                                                                                  - - - - - - -

                                                                                  - - Returns a deep copy of a given FsColumn. - -

                                                                                  -
                                                                                  -
                                                                                  -
                                                                                  - - column - - : - FsColumn -
                                                                                  -
                                                                                  -
                                                                                  -
                                                                                  -
                                                                                  - - Returns: - - FsColumn -
                                                                                  -
                                                                                  -
                                                                                  +
                                                                                  + +
                                                                                  + + + + + +

                                                                                  + Returns a deep copy of a given FsColumn. +

                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  + + column + + : + FsColumn +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  + + Returns: + + FsColumn +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  - +

                                                                                  @@ -928,7 +916,7 @@

                                                                                  -
                                                                                  +
                                                                                  Full Usage: FsColumn.createAt (index, cells) @@ -964,61 +952,62 @@

                                                                                  -
                                                                                  - - - - - - -

                                                                                  - +

                                                                                  + +
                                                                                  + + + + + +

                                                                                  + Create an FsColumn from a given FsCellsCollection and an columnColumn. +

                                                                                  +
                                                                                  +
                                                                                  +

                                                                                  + The appropriate range of the cells (i.e. minimum colIndex and maximum colIndex) is derived from the FsCells with the matching rowIndex.

                                                                                  -
                                                                                  -

                                                                                  - The appropriate range of the cells (i.e. minimum colIndex and maximum colIndex) is derived from the FsCells with the matching rowIndex. -

                                                                                  -
                                                                                  -
                                                                                  - - index - - : - int32 -
                                                                                  -
                                                                                  -
                                                                                  - - cells - - : - FsCellsCollection -
                                                                                  -
                                                                                  -
                                                                                  -
                                                                                  -
                                                                                  - - Returns: - - FsColumn -
                                                                                  -
                                                                                  -
                                                                                  +
                                                                                  +
                                                                                  + + index + + : + int32 +
                                                                                  +
                                                                                  +
                                                                                  + + cells + + : + FsCellsCollection +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  + + Returns: + + FsColumn +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  - +

                                                                                  @@ -1027,7 +1016,7 @@

                                                                                  -
                                                                                  +
                                                                                  Full Usage: FsColumn.createDenseColumnOf column @@ -1057,56 +1046,57 @@

                                                                                  -
                                                                                  - - - - - - -

                                                                                  - +

                                                                                  + +
                                                                                  + + + + + +

                                                                                  + Takes a given FsColumn and returns a new dense FsColumn from it. FsColumns are sparse by default. This means there are no FsCells present between positions with that are filled with FsCells. In dense FsColumns, such "empty positions" are then filled with empty FsCells. -

                                                                                  -
                                                                                  -
                                                                                  -
                                                                                  - - column - - : - FsColumn -
                                                                                  -
                                                                                  -

                                                                                  - The FsColumn that whose copy gets transformed into a dense FsColumn. -

                                                                                  -
                                                                                  -
                                                                                  -
                                                                                  -
                                                                                  - - Returns: - - FsColumn -
                                                                                  -
                                                                                  -
                                                                                  +

                                                                                  +
                                                                                  + +
                                                                                  +
                                                                                  + + column + + : + FsColumn +
                                                                                  +
                                                                                  +

                                                                                  + The FsColumn that whose copy gets transformed into a dense FsColumn. +

                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  + + Returns: + + FsColumn +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  - +

                                                                                  @@ -1115,7 +1105,7 @@

                                                                                  -
                                                                                  +
                                                                                  Full Usage: FsColumn.empty () @@ -1131,40 +1121,39 @@

                                                                                  -
                                                                                  - - - - - - -

                                                                                  - - Creates an empty FsColumn, ranging from row 0, column 0 to row 0, column (1-based). - -

                                                                                  -
                                                                                  -
                                                                                  -
                                                                                  - - Returns: - - FsColumn -
                                                                                  -
                                                                                  -
                                                                                  +
                                                                                  + +
                                                                                  + + + + + +

                                                                                  + Creates an empty FsColumn, ranging from row 0, column 0 to row 0, column (1-based). +

                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  + + Returns: + + FsColumn +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  - +

                                                                                  @@ -1173,7 +1162,7 @@

                                                                                  -
                                                                                  +
                                                                                  Full Usage: FsColumn.getIndex column @@ -1201,50 +1190,49 @@

                                                                                  -
                                                                                  - - - - - - -

                                                                                  - - Returns the index of the given FsColumn. - -

                                                                                  -
                                                                                  -
                                                                                  -
                                                                                  - - column - - : - FsColumn -
                                                                                  -
                                                                                  -
                                                                                  -
                                                                                  -
                                                                                  - - Returns: - - int -
                                                                                  -
                                                                                  -
                                                                                  +
                                                                                  + +
                                                                                  + + + + + +

                                                                                  + Returns the index of the given FsColumn. +

                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  + + column + + : + FsColumn +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  + + Returns: + + int +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  - +

                                                                                  @@ -1253,7 +1241,7 @@

                                                                                  -
                                                                                  +
                                                                                  Full Usage: FsColumn.hasCellAt rowIndex column @@ -1293,66 +1281,67 @@

                                                                                  -
                                                                                  - - - - - - -

                                                                                  - +

                                                                                  + +
                                                                                  + + + + + +

                                                                                  + Checks if there is an FsCell at given row index of a given FsColumn. -

                                                                                  -
                                                                                  -
                                                                                  -
                                                                                  - - rowIndex - - : - int -
                                                                                  -
                                                                                  -

                                                                                  - The number of the row where the presence of an FsCell shall be checked. -

                                                                                  -
                                                                                  -
                                                                                  - - column - - : - FsColumn -
                                                                                  -
                                                                                  -

                                                                                  - -

                                                                                  -
                                                                                  -
                                                                                  -
                                                                                  -
                                                                                  - - Returns: - - bool -
                                                                                  -
                                                                                  -
                                                                                  +

                                                                                  +
                                                                                  + +
                                                                                  +
                                                                                  + + rowIndex + + : + int +
                                                                                  +
                                                                                  +

                                                                                  + The number of the row where the presence of an FsCell shall be checked. +

                                                                                  +
                                                                                  +
                                                                                  + + column + + : + FsColumn +
                                                                                  +
                                                                                  +

                                                                                  + +

                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  + + Returns: + + bool +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  - +

                                                                                  @@ -1361,7 +1350,7 @@

                                                                                  -
                                                                                  +
                                                                                  Full Usage: FsColumn.item rowIndex column @@ -1397,58 +1386,57 @@

                                                                                  -
                                                                                  - - - - - - -

                                                                                  - - Returns the FsCell at the given rowIndex from an FsColumn. - -

                                                                                  -
                                                                                  -
                                                                                  -
                                                                                  - - rowIndex - - : - int -
                                                                                  -
                                                                                  -
                                                                                  - - column - - : - FsColumn -
                                                                                  -
                                                                                  -
                                                                                  -
                                                                                  -
                                                                                  - - Returns: - - FsCell -
                                                                                  -
                                                                                  -
                                                                                  +
                                                                                  + +
                                                                                  + + + + + +

                                                                                  + Returns the FsCell at the given rowIndex from an FsColumn. +

                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  + + rowIndex + + : + int +
                                                                                  +
                                                                                  +
                                                                                  + + column + + : + FsColumn +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  + + Returns: + + FsCell +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  - +

                                                                                  @@ -1457,7 +1445,7 @@

                                                                                  -
                                                                                  +
                                                                                  Full Usage: FsColumn.toDenseColumn column @@ -1487,59 +1475,60 @@

                                                                                  -
                                                                                  - - - - - - -

                                                                                  - +

                                                                                  + +
                                                                                  + + + + + +

                                                                                  + Transforms the given FsColumn into a dense FsColumn. FsColumns are sparse by default. This means there are no FsCells present between positions with that are filled with FsCells. In dense FsColumns, such "empty positions" are then filled with empty FsCells. +

                                                                                  +
                                                                                  +
                                                                                  +

                                                                                  + This is an in-place operation.

                                                                                  -
                                                                                  -

                                                                                  - This is an in-place operation. -

                                                                                  -
                                                                                  -
                                                                                  - - column - - : - FsColumn -
                                                                                  -
                                                                                  -

                                                                                  - The FsColumn that gets transformed into a dense FsColumn. -

                                                                                  -
                                                                                  -
                                                                                  -
                                                                                  -
                                                                                  - - Returns: - - FsColumn -
                                                                                  -
                                                                                  -
                                                                                  +
                                                                                  +
                                                                                  + + column + + : + FsColumn +
                                                                                  +
                                                                                  +

                                                                                  + The FsColumn that gets transformed into a dense FsColumn. +

                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  + + Returns: + + FsColumn +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  - +

                                                                                  @@ -1548,7 +1537,7 @@

                                                                                  -
                                                                                  +
                                                                                  Full Usage: FsColumn.tryItem rowIndex column @@ -1588,79 +1577,85 @@

                                                                                  -
                                                                                  - - - - - - -

                                                                                  - +

                                                                                  + +
                                                                                  + + + + + +

                                                                                  + Returns the FsCell at the given rowIndex if it exists in the given FsColumn. Else returns None. -

                                                                                  -
                                                                                  -
                                                                                  -
                                                                                  - - rowIndex - - : - int -
                                                                                  -
                                                                                  -

                                                                                  - The number of the column where the FsCell shall be retrieved. -

                                                                                  -
                                                                                  -
                                                                                  - - column - - : - FsColumn -
                                                                                  -
                                                                                  -

                                                                                  - -

                                                                                  -
                                                                                  -
                                                                                  -
                                                                                  -
                                                                                  - - Returns: - - FsCell option -
                                                                                  -
                                                                                  -
                                                                                  +

                                                                                  +
                                                                                  + +
                                                                                  +
                                                                                  + + rowIndex + + : + int +
                                                                                  +
                                                                                  +

                                                                                  + The number of the column where the FsCell shall be retrieved. +

                                                                                  +
                                                                                  +
                                                                                  + + column + + : + FsColumn +
                                                                                  +
                                                                                  +

                                                                                  + +

                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  + + Returns: + + FsCell option +
                                                                                  +
                                                                                  +
                                                                                  +
                                                                                  -

                                                                                  -
                                                                                  -

                                                                                  +

                                                                                  + + + +
                                                                                  +
                                                                                    +

                                                                                    Type something to start searching.

                                                                                    +
                                                                                    +
                                                                                    + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-fsrange.html b/reference/fsspreadsheet-fsrange.html index 6ff3a128..1754a6d6 100644 --- a/reference/fsspreadsheet-fsrange.html +++ b/reference/fsspreadsheet-fsrange.html @@ -1,62 +1,50 @@ - - + - - FsRange (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                    -
                                                                                    - +
                                                                                    -
                                                                                    -
                                                                                    -
                                                                                    - +
                                                                                    + + + + + +
                                                                                    + + +
                                                                                    +
                                                                                    +

                                                                                    FsRange Type

                                                                                    @@ -122,7 +141,7 @@

                                                                                    - +

                                                                                    @@ -131,7 +150,7 @@

                                                                                    -
                                                                                    +
                                                                                    Full Usage: FsRange(rangeBase) @@ -159,23 +178,6 @@

                                                                                    -
                                                                                    - - - - - - -

                                                                                    - -

                                                                                    -
                                                                                    @@ -200,7 +202,7 @@

                                                                                    - +

                                                                                    @@ -209,7 +211,7 @@

                                                                                    -
                                                                                    +
                                                                                    Full Usage: FsRange(rangeAddress) @@ -237,23 +239,6 @@

                                                                                    -
                                                                                    - - - - - - -

                                                                                    - -

                                                                                    -
                                                                                    @@ -278,7 +263,7 @@

                                                                                    - +

                                                                                    @@ -287,7 +272,7 @@

                                                                                    -
                                                                                    +
                                                                                    Full Usage: FsRange(rangeAddress, styleValue) @@ -323,23 +308,6 @@

                                                                                    -
                                                                                    - - - - - - -

                                                                                    - -

                                                                                    -
                                                                                    @@ -391,7 +359,7 @@

                                                                                    - +

                                                                                    @@ -400,7 +368,7 @@

                                                                                    -
                                                                                    +
                                                                                    Full Usage: this.FirstRow @@ -416,23 +384,6 @@

                                                                                    -
                                                                                    - - - - - - -

                                                                                    - -

                                                                                    -
                                                                                    @@ -447,7 +398,7 @@

                                                                                    - +

                                                                                    @@ -456,7 +407,7 @@

                                                                                    -
                                                                                    +
                                                                                    Full Usage: this.Row @@ -484,23 +435,6 @@

                                                                                    -
                                                                                    - - - - - - -

                                                                                    - -

                                                                                    -
                                                                                    @@ -527,19 +461,24 @@

                                                                                    -

                                                                                    -

                                                                                    -

                                                                                    +

                                                                                    + + + +
                                                                                    +
                                                                                      +

                                                                                      Type something to start searching.

                                                                                      +
                                                                                      +
                                                                                      + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-fsrangeaddress.html b/reference/fsspreadsheet-fsrangeaddress.html index 61caa20b..9d0f16c9 100644 --- a/reference/fsspreadsheet-fsrangeaddress.html +++ b/reference/fsspreadsheet-fsrangeaddress.html @@ -1,62 +1,50 @@ - - + - - FsRangeAddress (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                      -
                                                                                      - +
                                                                                      -
                                                                                      -
                                                                                      -
                                                                                      - +
                                                                                      + + + + + +
                                                                                      + + +
                                                                                      +
                                                                                      +

                                                                                      FsRangeAddress Type

                                                                                      @@ -122,7 +141,7 @@

                                                                                      - +

                                                                                      @@ -131,7 +150,7 @@

                                                                                      -
                                                                                      +
                                                                                      Full Usage: FsRangeAddress(rangeAddress) @@ -159,23 +178,6 @@

                                                                                      -
                                                                                      - - - - - - -

                                                                                      - -

                                                                                      -
                                                                                      @@ -200,7 +202,7 @@

                                                                                      - +

                                                                                      @@ -209,7 +211,7 @@

                                                                                      -
                                                                                      +
                                                                                      Full Usage: FsRangeAddress(firstAddress, lastAddress) @@ -245,23 +247,6 @@

                                                                                      -
                                                                                      - - - - - - -

                                                                                      - -

                                                                                      -
                                                                                      @@ -313,7 +298,7 @@

                                                                                      - +

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

                                                                                      -
                                                                                      +
                                                                                      Full Usage: this.Copy @@ -338,40 +323,39 @@

                                                                                      -
                                                                                      - - - - - - -

                                                                                      - - Creates a deep copy of this FsRangeAddress. - -

                                                                                      -
                                                                                      -
                                                                                      -
                                                                                      - - Returns: - - FsRangeAddress -
                                                                                      -
                                                                                      -
                                                                                      +
                                                                                      + +
                                                                                      + + + + + +

                                                                                      + Creates a deep copy of this FsRangeAddress. +

                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      + + Returns: + + FsRangeAddress +
                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      - +

                                                                                      @@ -380,7 +364,7 @@

                                                                                      -
                                                                                      +
                                                                                      Full Usage: this.Extend @@ -403,23 +387,6 @@

                                                                                      -
                                                                                      - - - - - - -

                                                                                      - -

                                                                                      -
                                                                                      @@ -435,7 +402,7 @@

                                                                                      - +

                                                                                      @@ -444,7 +411,7 @@

                                                                                      -
                                                                                      +
                                                                                      Full Usage: this.FirstAddress @@ -460,23 +427,6 @@

                                                                                      -
                                                                                      - - - - - - -

                                                                                      - -

                                                                                      -
                                                                                      @@ -491,7 +441,7 @@

                                                                                      - +

                                                                                      @@ -500,7 +450,7 @@

                                                                                      -
                                                                                      +
                                                                                      Full Usage: this.LastAddress @@ -516,23 +466,6 @@

                                                                                      -
                                                                                      - - - - - - -

                                                                                      - -

                                                                                      -
                                                                                      @@ -547,7 +480,7 @@

                                                                                      - +

                                                                                      @@ -556,7 +489,7 @@

                                                                                      -
                                                                                      +
                                                                                      Full Usage: this.Normalize @@ -569,16 +502,13 @@

                                                                                      - - +

                                                                                      @@ -589,7 +519,7 @@

                                                                                      - +

                                                                                      @@ -598,7 +528,7 @@

                                                                                      -
                                                                                      +
                                                                                      Full Usage: this.Range @@ -611,16 +541,13 @@

                                                                                      - - +

                                                                                      @@ -631,7 +558,7 @@

                                                                                      - +

                                                                                      @@ -640,7 +567,7 @@

                                                                                      -
                                                                                      +
                                                                                      Full Usage: this.Union @@ -668,23 +595,6 @@

                                                                                      -
                                                                                      - - - - - - -

                                                                                      - -

                                                                                      -
                                                                                      @@ -728,7 +638,7 @@

                                                                                      - +

                                                                                      @@ -737,7 +647,7 @@

                                                                                      -
                                                                                      +
                                                                                      Full Usage: FsRangeAddress.copy rangeAddress @@ -765,63 +675,67 @@

                                                                                      -
                                                                                      - - - - - - -

                                                                                      - - Returns a deep copy of a given FsRangeAddress. - -

                                                                                      -
                                                                                      -
                                                                                      -
                                                                                      - - rangeAddress - - : - FsRangeAddress -
                                                                                      -
                                                                                      -
                                                                                      -
                                                                                      -
                                                                                      - - Returns: - - FsRangeAddress -
                                                                                      -
                                                                                      -
                                                                                      +
                                                                                      + +
                                                                                      + + + + + +

                                                                                      + Returns a deep copy of a given FsRangeAddress. +

                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      + + rangeAddress + + : + FsRangeAddress +
                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      + + Returns: + + FsRangeAddress +
                                                                                      +
                                                                                      +
                                                                                      +
                                                                                      -

                                                                                      -

                                                                                      -

                                                                                      +

                                                                                      + + + +
                                                                                      +
                                                                                        +

                                                                                        Type something to start searching.

                                                                                        +
                                                                                        +
                                                                                        + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-fsrangebase.html b/reference/fsspreadsheet-fsrangebase.html index a761da63..20ab5baf 100644 --- a/reference/fsspreadsheet-fsrangebase.html +++ b/reference/fsspreadsheet-fsrangebase.html @@ -1,62 +1,50 @@ - - + - - FsRangeBase (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                        -
                                                                                        - +
                                                                                        -
                                                                                        -
                                                                                        -
                                                                                        - +
                                                                                        + + + + + +
                                                                                        + + +
                                                                                        +
                                                                                        +

                                                                                        FsRangeBase Type

                                                                                        @@ -122,7 +141,7 @@

                                                                                        - +

                                                                                        @@ -131,7 +150,7 @@

                                                                                        -
                                                                                        +
                                                                                        Full Usage: FsRangeBase(rangeAddress) @@ -159,23 +178,6 @@

                                                                                        -
                                                                                        - - - - - - -

                                                                                        - -

                                                                                        -
                                                                                        @@ -219,7 +221,7 @@

                                                                                        - +

                                                                                        @@ -228,7 +230,7 @@

                                                                                        -
                                                                                        +
                                                                                        Full Usage: this.Cell @@ -264,23 +266,6 @@

                                                                                        -
                                                                                        - - - - - - -

                                                                                        - -

                                                                                        -
                                                                                        @@ -313,7 +298,7 @@

                                                                                        - +

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

                                                                                        -
                                                                                        +
                                                                                        Full Usage: this.Cells @@ -344,7 +329,7 @@


                                                                                        Returns: - seq<FsCell> + FsCell seq

                                                                                        @@ -352,54 +337,55 @@

                                                                                        -
                                                                                        - - - - - - -

                                                                                        - +

                                                                                        + +
                                                                                        + + + + + +

                                                                                        + Returns the FsCells of this FsRangeBase with the given FsCellsCollection. -

                                                                                        -
                                                                                        -
                                                                                        -
                                                                                        - - cells - - : - FsCellsCollection -
                                                                                        -
                                                                                        -

                                                                                        - The FsCellsCollection where the FsCells are retrieved from. -

                                                                                        -
                                                                                        -
                                                                                        -
                                                                                        -
                                                                                        - - Returns: - - seq<FsCell> -
                                                                                        -
                                                                                        -
                                                                                        +

                                                                                        +
                                                                                        + +
                                                                                        +
                                                                                        + + cells + + : + FsCellsCollection +
                                                                                        +
                                                                                        +

                                                                                        + The FsCellsCollection where the FsCells are retrieved from. +

                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        + + Returns: + + FsCell seq +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        - +

                                                                                        @@ -408,7 +394,7 @@

                                                                                        -
                                                                                        +
                                                                                        Full Usage: this.ColumnCount @@ -424,40 +410,39 @@

                                                                                        -
                                                                                        - - - - - - -

                                                                                        - - The number of columns in the FsRangeBase. - -

                                                                                        -
                                                                                        -
                                                                                        -
                                                                                        - - Returns: - - int -
                                                                                        -
                                                                                        -
                                                                                        +
                                                                                        + +
                                                                                        + + + + + +

                                                                                        + The number of columns in the FsRangeBase. +

                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        + + Returns: + + int +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        - +

                                                                                        @@ -466,7 +451,7 @@

                                                                                        -
                                                                                        +
                                                                                        Full Usage: this.Extend @@ -489,23 +474,6 @@

                                                                                        -
                                                                                        - - - - - - -

                                                                                        - -

                                                                                        -
                                                                                        @@ -521,7 +489,7 @@

                                                                                        - +

                                                                                        @@ -530,7 +498,7 @@

                                                                                        -
                                                                                        +
                                                                                        Full Usage: this.RangeAddress @@ -543,16 +511,13 @@

                                                                                        - - +

                                                                                        @@ -563,7 +528,7 @@

                                                                                        - +

                                                                                        @@ -572,7 +537,7 @@

                                                                                        -
                                                                                        +
                                                                                        Full Usage: this.RowCount @@ -588,34 +553,33 @@

                                                                                        -
                                                                                        - - - - - - -

                                                                                        - - The number of rows in the FsRangeBase. - -

                                                                                        -
                                                                                        -
                                                                                        -
                                                                                        - - Returns: - - int -
                                                                                        -
                                                                                        -
                                                                                        +
                                                                                        + +
                                                                                        + + + + + +

                                                                                        + The number of rows in the FsRangeBase. +

                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        + + Returns: + + int +
                                                                                        +
                                                                                        +
                                                                                        +
                                                                                        @@ -623,19 +587,24 @@

                                                                                        -

                                                                                        -

                                                                                        -

                                                                                        +

                                                                                        + + + +
                                                                                        +
                                                                                          +

                                                                                          Type something to start searching.

                                                                                          +
                                                                                          +
                                                                                          + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-fsrangecolumn.html b/reference/fsspreadsheet-fsrangecolumn.html index caa5a02b..9615515b 100644 --- a/reference/fsspreadsheet-fsrangecolumn.html +++ b/reference/fsspreadsheet-fsrangecolumn.html @@ -1,62 +1,50 @@ - - + - - FsRangeColumn (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                          -
                                                                                          - +
                                                                                          -
                                                                                          -
                                                                                          -
                                                                                          - +
                                                                                          + + + + + +
                                                                                          + + +
                                                                                          +
                                                                                          +

                                                                                          FsRangeColumn Type

                                                                                          @@ -122,7 +141,7 @@

                                                                                          - +

                                                                                          @@ -131,7 +150,7 @@

                                                                                          -
                                                                                          +
                                                                                          Full Usage: FsRangeColumn(index) @@ -159,23 +178,6 @@

                                                                                          -
                                                                                          - - - - - - -

                                                                                          - -

                                                                                          -
                                                                                          @@ -200,7 +202,7 @@

                                                                                          - +

                                                                                          @@ -209,7 +211,7 @@

                                                                                          -
                                                                                          +
                                                                                          Full Usage: FsRangeColumn(rangeAddress) @@ -237,23 +239,6 @@

                                                                                          -
                                                                                          - - - - - - -

                                                                                          - -

                                                                                          -
                                                                                          @@ -297,7 +282,7 @@

                                                                                          - +

                                                                                          @@ -306,7 +291,7 @@

                                                                                          -
                                                                                          +
                                                                                          Full Usage: this.Cell @@ -342,23 +327,6 @@

                                                                                          -
                                                                                          - - - - - - -

                                                                                          - -

                                                                                          -
                                                                                          @@ -391,7 +359,7 @@

                                                                                          - +

                                                                                          @@ -400,7 +368,7 @@

                                                                                          -
                                                                                          +
                                                                                          Full Usage: this.Cells @@ -420,7 +388,7 @@


                                                                                          Returns: - seq<FsCell> + FsCell seq

                                                                                          @@ -428,23 +396,6 @@

                                                                                          -
                                                                                          - - - - - - -

                                                                                          - -

                                                                                          -
                                                                                          @@ -460,7 +411,7 @@

                                                                                          Returns: - seq<FsCell> + FsCell seq

                                                                                          @@ -469,7 +420,7 @@

                                                                                          - +

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

                                                                                          -
                                                                                          +
                                                                                          Full Usage: this.Copy @@ -494,40 +445,39 @@

                                                                                          -
                                                                                          - - - - - - -

                                                                                          - - Creates a deep copy of this FsRangeColumn. - -

                                                                                          -
                                                                                          -
                                                                                          -
                                                                                          - - Returns: - - FsRangeColumn -
                                                                                          -
                                                                                          -
                                                                                          +
                                                                                          + +
                                                                                          + + + + + +

                                                                                          + Creates a deep copy of this FsRangeColumn. +

                                                                                          +
                                                                                          +
                                                                                          +
                                                                                          +
                                                                                          + + Returns: + + FsRangeColumn +
                                                                                          +
                                                                                          +
                                                                                          +
                                                                                          - +

                                                                                          @@ -536,7 +486,7 @@

                                                                                          -
                                                                                          +
                                                                                          Full Usage: this.FirstCell @@ -564,23 +514,6 @@

                                                                                          -
                                                                                          - - - - - - -

                                                                                          - -

                                                                                          -
                                                                                          @@ -605,7 +538,7 @@

                                                                                          - +

                                                                                          @@ -614,7 +547,7 @@

                                                                                          -
                                                                                          +
                                                                                          Full Usage: this.Index @@ -627,16 +560,13 @@

                                                                                          - - +

                                                                                          @@ -666,7 +596,7 @@

                                                                                          - +

                                                                                          @@ -675,7 +605,7 @@

                                                                                          -
                                                                                          +
                                                                                          Full Usage: FsRangeColumn.copy rangeColumn @@ -703,50 +633,49 @@

                                                                                          -
                                                                                          - - - - - - -

                                                                                          - - Returns a deep copy of a given FsRangeColumn. - -

                                                                                          -
                                                                                          -
                                                                                          -
                                                                                          - - rangeColumn - - : - FsRangeColumn -
                                                                                          -
                                                                                          -
                                                                                          -
                                                                                          -
                                                                                          - - Returns: - - FsRangeColumn -
                                                                                          -
                                                                                          -
                                                                                          +
                                                                                          + +
                                                                                          + + + + + +

                                                                                          + Returns a deep copy of a given FsRangeColumn. +

                                                                                          +
                                                                                          +
                                                                                          +
                                                                                          +
                                                                                          + + rangeColumn + + : + FsRangeColumn +
                                                                                          +
                                                                                          +
                                                                                          +
                                                                                          +
                                                                                          + + Returns: + + FsRangeColumn +
                                                                                          +
                                                                                          +
                                                                                          +
                                                                                          - +

                                                                                          @@ -755,7 +684,7 @@

                                                                                          -
                                                                                          +
                                                                                          Full Usage: FsRangeColumn.fromRangeAddress rangeAddress @@ -783,23 +712,6 @@

                                                                                          -
                                                                                          - - - - - - -

                                                                                          - -

                                                                                          -
                                                                                          @@ -825,19 +737,24 @@

                                                                                          -

                                                                                          -
                                                                                          -

                                                                                          +

                                                                                          + + + +
                                                                                          +
                                                                                            +

                                                                                            Type something to start searching.

                                                                                            +
                                                                                            +
                                                                                            + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-fsrangerow.html b/reference/fsspreadsheet-fsrangerow.html index c37e7066..09fec18d 100644 --- a/reference/fsspreadsheet-fsrangerow.html +++ b/reference/fsspreadsheet-fsrangerow.html @@ -1,62 +1,50 @@ - - + - - FsRangeRow (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                            -
                                                                                            - +
                                                                                            -
                                                                                            -
                                                                                            -
                                                                                            - +
                                                                                            + + + + + +
                                                                                            + + +
                                                                                            +
                                                                                            +

                                                                                            FsRangeRow Type

                                                                                            @@ -122,7 +141,7 @@

                                                                                            - +

                                                                                            @@ -131,7 +150,7 @@

                                                                                            -
                                                                                            +
                                                                                            Full Usage: FsRangeRow(index) @@ -159,23 +178,6 @@

                                                                                            -
                                                                                            - - - - - - -

                                                                                            - -

                                                                                            -
                                                                                            @@ -200,7 +202,7 @@

                                                                                            - +

                                                                                            @@ -209,7 +211,7 @@

                                                                                            -
                                                                                            +
                                                                                            Full Usage: FsRangeRow(rangeAddress) @@ -237,23 +239,6 @@

                                                                                            -
                                                                                            - - - - - - -

                                                                                            - -

                                                                                            -
                                                                                            @@ -297,7 +282,7 @@

                                                                                            - +

                                                                                            @@ -306,7 +291,7 @@

                                                                                            -
                                                                                            +
                                                                                            Full Usage: this.Cell @@ -342,23 +327,6 @@

                                                                                            -
                                                                                            - - - - - - -

                                                                                            - -

                                                                                            -
                                                                                            @@ -391,7 +359,7 @@

                                                                                            - +

                                                                                            @@ -400,7 +368,7 @@

                                                                                            -
                                                                                            +
                                                                                            Full Usage: this.Cells @@ -420,7 +388,7 @@


                                                                                            Returns: - seq<FsCell> + FsCell seq

                                                                                            @@ -428,23 +396,6 @@

                                                                                            -
                                                                                            - - - - - - -

                                                                                            - -

                                                                                            -
                                                                                            @@ -460,7 +411,7 @@

                                                                                            Returns: - seq<FsCell> + FsCell seq

                                                                                            @@ -469,7 +420,7 @@

                                                                                            - +

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

                                                                                            -
                                                                                            +
                                                                                            Full Usage: this.Index @@ -491,16 +442,13 @@

                                                                                            - - +

                                                                                            @@ -513,19 +461,24 @@

                                                                                            -
                                                                                            -
                                                                                            -

                                                                                            +

                                                                                            + + + +
                                                                                            +
                                                                                              +

                                                                                              Type something to start searching.

                                                                                              +
                                                                                              +
                                                                                              + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-fsrow.html b/reference/fsspreadsheet-fsrow.html index dc494af1..a61fe5c5 100644 --- a/reference/fsspreadsheet-fsrow.html +++ b/reference/fsspreadsheet-fsrow.html @@ -1,62 +1,50 @@ - - + - - FsRow (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                              -
                                                                                              - +
                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              - +
                                                                                              + + + + + +
                                                                                              + + +
                                                                                              +
                                                                                              +

                                                                                              FsRow Type

                                                                                              @@ -91,9 +110,9 @@

                                                                                              All Interfaces: - IEnumerable<FsCell> + IEnumerable<FsCell> , - IEnumerable + IEnumerable
                                                                                              @@ -133,7 +152,7 @@

                                                                                              - +

                                                                                              @@ -142,7 +161,7 @@

                                                                                              -
                                                                                              +
                                                                                              Full Usage: FsRow(rangeAddress, cells) @@ -178,23 +197,6 @@

                                                                                              -
                                                                                              - - - - - - -

                                                                                              - -

                                                                                              -
                                                                                              @@ -246,7 +248,7 @@

                                                                                              - +

                                                                                              @@ -255,7 +257,7 @@

                                                                                              -
                                                                                              +
                                                                                              Full Usage: this.Cells @@ -263,7 +265,7 @@


                                                                                              Returns: - seq<FsCell> + FsCell seq

                                                                                              @@ -271,40 +273,39 @@

                                                                                              -
                                                                                              - - - - - - -

                                                                                              - - The associated FsCells. - -

                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              - - Returns: - - seq<FsCell> -
                                                                                              -
                                                                                              -
                                                                                              +
                                                                                              + +
                                                                                              + + + + + +

                                                                                              + The associated FsCells. +

                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + + Returns: + + FsCell seq +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              - +

                                                                                              @@ -313,7 +314,7 @@

                                                                                              -
                                                                                              +
                                                                                              Full Usage: this.Copy @@ -329,40 +330,39 @@

                                                                                              -
                                                                                              - - - - - - -

                                                                                              - - Creates a deep copy of this FsRow. - -

                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              - - Returns: - - FsRow -
                                                                                              -
                                                                                              -
                                                                                              +
                                                                                              + +
                                                                                              + + + + + +

                                                                                              + Creates a deep copy of this FsRow. +

                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + + Returns: + + FsRow +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              - +

                                                                                              @@ -371,7 +371,7 @@

                                                                                              -
                                                                                              +
                                                                                              Full Usage: this.HasCellAt @@ -401,54 +401,55 @@

                                                                                              -
                                                                                              - - - - - - -

                                                                                              - +

                                                                                              + +
                                                                                              + + + + + +

                                                                                              + Checks if there is an FsCell at given column index. -

                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              - - colIndex - - : - int -
                                                                                              -
                                                                                              -

                                                                                              - The number of the column where the presence of an FsCell shall be checked. -

                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              - - Returns: - - bool -
                                                                                              -
                                                                                              -
                                                                                              +

                                                                                              +
                                                                                              + +
                                                                                              +
                                                                                              + + colIndex + + : + int +
                                                                                              +
                                                                                              +

                                                                                              + The number of the column where the presence of an FsCell shall be checked. +

                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + + Returns: + + bool +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              - +

                                                                                              @@ -457,7 +458,7 @@

                                                                                              -
                                                                                              +
                                                                                              Full Usage: this.Index @@ -470,21 +471,16 @@

                                                                                              - - +

                                                                                              - - The index of the FsRow. - + The index of the FsRow.

                                                                                              @@ -492,7 +488,7 @@

                                                                                              - +

                                                                                              @@ -501,7 +497,7 @@

                                                                                              -
                                                                                              +
                                                                                              Full Usage: this.InsertValueAt @@ -532,49 +528,48 @@

                                                                                              -
                                                                                              - - - - - - -

                                                                                              - - 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. - -

                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              - - colIndex - - : - int -
                                                                                              -
                                                                                              -
                                                                                              - - value - - : - 'a -
                                                                                              -
                                                                                              -
                                                                                              +
                                                                                              + +
                                                                                              + + + + + +

                                                                                              + 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. +

                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + + colIndex + + : + int +
                                                                                              +
                                                                                              +
                                                                                              + + value + + : + 'a +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              - +

                                                                                              @@ -583,7 +578,7 @@

                                                                                              -
                                                                                              +
                                                                                              Full Usage: this[columnIndex] @@ -611,50 +606,49 @@

                                                                                              -
                                                                                              - - - - - - -

                                                                                              - - Returns the FsCell at columnIndex if it exists. Else creates an empty FsCell at that position. - -

                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              - - columnIndex - - : - int -
                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              - - Returns: - - FsCell -
                                                                                              -
                                                                                              -
                                                                                              +
                                                                                              + +
                                                                                              + + + + + +

                                                                                              + Returns the FsCell at columnIndex if it exists. Else creates an empty FsCell at that position. +

                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + + columnIndex + + : + int +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + + Returns: + + FsCell +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              - +

                                                                                              @@ -663,7 +657,7 @@

                                                                                              -
                                                                                              +
                                                                                              Full Usage: this.MaxColIndex @@ -679,40 +673,39 @@

                                                                                              -
                                                                                              - - - - - - -

                                                                                              - - The number of the highest column index of the FsRow where an FsCell exists. - -

                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              - - Returns: - - int -
                                                                                              -
                                                                                              -
                                                                                              +
                                                                                              + +
                                                                                              + + + + + +

                                                                                              + The number of the highest column index of the FsRow where an FsCell exists. +

                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + + Returns: + + int +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              - +

                                                                                              @@ -721,7 +714,7 @@

                                                                                              -
                                                                                              +
                                                                                              Full Usage: this.MinColIndex @@ -737,40 +730,39 @@

                                                                                              -
                                                                                              - - - - - - -

                                                                                              - - The number of the lowest column index of the FsRow where an FsCell exists. - -

                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              - - Returns: - - int -
                                                                                              -
                                                                                              -
                                                                                              +
                                                                                              + +
                                                                                              + + + + + +

                                                                                              + The number of the lowest column index of the FsRow where an FsCell exists. +

                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + + Returns: + + int +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              - +

                                                                                              @@ -779,7 +771,7 @@

                                                                                              -
                                                                                              +
                                                                                              Full Usage: this.ToDenseRow @@ -792,23 +784,18 @@

                                                                                              - - +

                                                                                              - - Transforms the FsRow into a dense FsRow. + Transforms the FsRow into a dense FsRow. FsRows are sparse by default. This means there are no FsCells present between positions with that are filled with FsCells. In dense FsRows, such "empty positions" are then filled with empty FsCells. -

                                                                                              @@ -816,7 +803,7 @@

                                                                                              - +

                                                                                              @@ -825,7 +812,7 @@

                                                                                              -
                                                                                              +
                                                                                              Full Usage: this.TryItem @@ -855,48 +842,49 @@

                                                                                              -
                                                                                              - - - - - - -

                                                                                              - +

                                                                                              + +
                                                                                              + + + + + +

                                                                                              + Returns the FsCell at the given columnIndex if it exists. Else returns None. -

                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              - - colIndex - - : - int -
                                                                                              -
                                                                                              -

                                                                                              - The number of the column where the FsCell shall be retrieved. -

                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              - - Returns: - - FsCell option -
                                                                                              -
                                                                                              -
                                                                                              +

                                                                                              +
                                                                                              + +
                                                                                              +
                                                                                              + + colIndex + + : + int +
                                                                                              +
                                                                                              +

                                                                                              + The number of the column where the FsCell shall be retrieved. +

                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + + Returns: + + FsCell option +
                                                                                              +
                                                                                              +
                                                                                              + @@ -921,7 +909,7 @@

                                                                                              - +

                                                                                              @@ -930,7 +918,7 @@

                                                                                              -
                                                                                              +
                                                                                              Full Usage: FsRow.copy row @@ -958,50 +946,49 @@

                                                                                              -
                                                                                              - - - - - - -

                                                                                              - - Returns a deep copy of a given FsRow. - -

                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              - - row - - : - FsRow -
                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              - - Returns: - - FsRow -
                                                                                              -
                                                                                              -
                                                                                              +
                                                                                              + +
                                                                                              + + + + + +

                                                                                              + Returns a deep copy of a given FsRow. +

                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + + row + + : + FsRow +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + + Returns: + + FsRow +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              - +

                                                                                              @@ -1010,7 +997,7 @@

                                                                                              -
                                                                                              +
                                                                                              Full Usage: FsRow.createAt (index, cells) @@ -1046,61 +1033,62 @@

                                                                                              -
                                                                                              - - - - - - -

                                                                                              - +

                                                                                              + +
                                                                                              + + + + + +

                                                                                              + Creates an FsRow from a given FsCellsCollection and an rowIndex. +

                                                                                              +
                                                                                              +
                                                                                              +

                                                                                              + The appropriate range of the cells (i.e. minimum colIndex and maximum colIndex) is derived from the FsCells with the matching rowIndex.

                                                                                              -
                                                                                              -

                                                                                              - The appropriate range of the cells (i.e. minimum colIndex and maximum colIndex) is derived from the FsCells with the matching rowIndex. -

                                                                                              -
                                                                                              -
                                                                                              - - index - - : - int32 -
                                                                                              -
                                                                                              -
                                                                                              - - cells - - : - FsCellsCollection -
                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              - - Returns: - - FsRow -
                                                                                              -
                                                                                              -
                                                                                              +
                                                                                              +
                                                                                              + + index + + : + int32 +
                                                                                              +
                                                                                              +
                                                                                              + + cells + + : + FsCellsCollection +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + + Returns: + + FsRow +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              - +

                                                                                              @@ -1109,7 +1097,7 @@

                                                                                              -
                                                                                              +
                                                                                              Full Usage: FsRow.createDenseRowOf row @@ -1139,56 +1127,57 @@

                                                                                              -
                                                                                              - - - - - - -

                                                                                              - +

                                                                                              + +
                                                                                              + + + + + +

                                                                                              + Takes a given FsRow and returns a new dense FsRow from it. FsRows are sparse by default. This means there are no FsCells present between positions with that are filled with FsCells. In dense FsRows, such "empty positions" are then filled with empty FsCells. -

                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              - - row - - : - FsRow -
                                                                                              -
                                                                                              -

                                                                                              - The FsRow that whose copy gets transformed into a dense FsRow. -

                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              - - Returns: - - FsRow -
                                                                                              -
                                                                                              -
                                                                                              +

                                                                                              +
                                                                                              + +
                                                                                              +
                                                                                              + + row + + : + FsRow +
                                                                                              +
                                                                                              +

                                                                                              + The FsRow that whose copy gets transformed into a dense FsRow. +

                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + + Returns: + + FsRow +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              - +

                                                                                              @@ -1197,7 +1186,7 @@

                                                                                              -
                                                                                              +
                                                                                              Full Usage: FsRow.empty () @@ -1213,23 +1202,6 @@

                                                                                              -
                                                                                              - - - - - - -

                                                                                              - -

                                                                                              -
                                                                                              @@ -1244,7 +1216,7 @@

                                                                                              - +

                                                                                              @@ -1253,7 +1225,7 @@

                                                                                              -
                                                                                              +
                                                                                              Full Usage: FsRow.getIndex row @@ -1281,50 +1253,49 @@

                                                                                              -
                                                                                              - - - - - - -

                                                                                              - - Returns the index of the given FsRow. - -

                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              - - row - - : - FsRow -
                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              - - Returns: - - int -
                                                                                              -
                                                                                              -
                                                                                              +
                                                                                              + +
                                                                                              + + + + + +

                                                                                              + Returns the index of the given FsRow. +

                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + + row + + : + FsRow +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + + Returns: + + int +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              - +

                                                                                              @@ -1333,7 +1304,7 @@

                                                                                              -
                                                                                              +
                                                                                              Full Usage: FsRow.hasCellAt colIndex row @@ -1373,66 +1344,67 @@

                                                                                              -
                                                                                              - - - - - - -

                                                                                              - +

                                                                                              + +
                                                                                              + + + + + +

                                                                                              + Checks if there is an FsCell at given column index of a given FsRow. -

                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              - - colIndex - - : - int -
                                                                                              -
                                                                                              -

                                                                                              - The number of the column where the presence of an FsCell shall be checked. -

                                                                                              -
                                                                                              -
                                                                                              - - row - - : - FsRow -
                                                                                              -
                                                                                              -

                                                                                              - -

                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              - - Returns: - - bool -
                                                                                              -
                                                                                              -
                                                                                              +

                                                                                              +
                                                                                              + +
                                                                                              +
                                                                                              + + colIndex + + : + int +
                                                                                              +
                                                                                              +

                                                                                              + The number of the column where the presence of an FsCell shall be checked. +

                                                                                              +
                                                                                              +
                                                                                              + + row + + : + FsRow +
                                                                                              +
                                                                                              +

                                                                                              + +

                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + + Returns: + + bool +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              - +

                                                                                              @@ -1441,7 +1413,7 @@

                                                                                              -
                                                                                              +
                                                                                              Full Usage: FsRow.insertValueAt colIndex value row @@ -1462,7 +1434,7 @@

                                                                                              value : - IConvertible + IConvertible
                                                                                              @@ -1485,68 +1457,67 @@

                                                                                              -
                                                                                              - - - - - - -

                                                                                              - - Adds a value at the given row- and columnIndex to FsRow using. +

                                                                                              + +
                                                                                              + + + + + +

                                                                                              + Adds a value at the given row- and columnIndex to FsRow using. If a cell exists in the given position, shoves it to the right. - -

                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              - - colIndex - - : - int -
                                                                                              -
                                                                                              -
                                                                                              - - value - - : - IConvertible -
                                                                                              -
                                                                                              -
                                                                                              - - row - - : - FsRow -
                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              - - Returns: - - FsRow -
                                                                                              -
                                                                                              -
                                                                                              +

                                                                                              +
                                                                                              + +
                                                                                              +
                                                                                              + + colIndex + + : + int +
                                                                                              +
                                                                                              +
                                                                                              + + value + + : + IConvertible +
                                                                                              +
                                                                                              +
                                                                                              + + row + + : + FsRow +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + + Returns: + + FsRow +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              - +

                                                                                              @@ -1555,7 +1526,7 @@

                                                                                              -
                                                                                              +
                                                                                              Full Usage: FsRow.item colIndex row @@ -1591,58 +1562,57 @@

                                                                                              -
                                                                                              - - - - - - -

                                                                                              - - Returns the FsCell at the given columnIndex from an FsRow if it exists. Else creates an ampty FsCell at that position. - -

                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              - - colIndex - - : - int -
                                                                                              -
                                                                                              -
                                                                                              - - row - - : - FsRow -
                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              - - Returns: - - FsCell -
                                                                                              -
                                                                                              -
                                                                                              +
                                                                                              + +
                                                                                              + + + + + +

                                                                                              + Returns the FsCell at the given columnIndex from an FsRow if it exists. Else creates an ampty FsCell at that position. +

                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + + colIndex + + : + int +
                                                                                              +
                                                                                              +
                                                                                              + + row + + : + FsRow +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + + Returns: + + FsCell +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              - +

                                                                                              @@ -1651,7 +1621,7 @@

                                                                                              -
                                                                                              +
                                                                                              Full Usage: FsRow.toDenseRow row @@ -1681,59 +1651,60 @@

                                                                                              -
                                                                                              - - - - - - -

                                                                                              - +

                                                                                              + +
                                                                                              + + + + + +

                                                                                              + Transforms the given FsRow into a dense FsRow. FsRows are sparse by default. This means there are no FsCells present between positions with that are filled with FsCells. In dense FsRows, such "empty positions" are then filled with empty FsCells. +

                                                                                              +
                                                                                              +
                                                                                              +

                                                                                              + This is an in-place operation.

                                                                                              -
                                                                                              -

                                                                                              - This is an in-place operation. -

                                                                                              -
                                                                                              -
                                                                                              - - row - - : - FsRow -
                                                                                              -
                                                                                              -

                                                                                              - The FsRow that gets transformed into a dense FsRow. -

                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              - - Returns: - - FsRow -
                                                                                              -
                                                                                              -
                                                                                              +
                                                                                              +
                                                                                              + + row + + : + FsRow +
                                                                                              +
                                                                                              +

                                                                                              + The FsRow that gets transformed into a dense FsRow. +

                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + + Returns: + + FsRow +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              - +

                                                                                              @@ -1742,7 +1713,7 @@

                                                                                              -
                                                                                              +
                                                                                              Full Usage: FsRow.tryItem colIndex row @@ -1782,79 +1753,85 @@

                                                                                              -
                                                                                              - - - - - - -

                                                                                              - +

                                                                                              + +
                                                                                              + + + + + +

                                                                                              + Returns the FsCell at the given columnIndex if it exists in the given FsRow. Else returns None. -

                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              - - colIndex - - : - int -
                                                                                              -
                                                                                              -

                                                                                              - The number of the column where the FsCell shall be retrieved. -

                                                                                              -
                                                                                              -
                                                                                              - - row - - : - FsRow -
                                                                                              -
                                                                                              -

                                                                                              - -

                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              -
                                                                                              - - Returns: - - FsCell option -
                                                                                              -
                                                                                              -
                                                                                              +

                                                                                              +
                                                                                              + +
                                                                                              +
                                                                                              + + colIndex + + : + int +
                                                                                              +
                                                                                              +

                                                                                              + The number of the column where the FsCell shall be retrieved. +

                                                                                              +
                                                                                              +
                                                                                              + + row + + : + FsRow +
                                                                                              +
                                                                                              +

                                                                                              + +

                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              + + Returns: + + FsCell option +
                                                                                              +
                                                                                              +
                                                                                              +
                                                                                              -

                                                                                              -
                                                                                              -

                                                                                              +

                                                                                              + + + +
                                                                                              +
                                                                                                +

                                                                                                Type something to start searching.

                                                                                                +
                                                                                                +
                                                                                                + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-fstable.html b/reference/fsspreadsheet-fstable.html index baa36b57..a45cffc5 100644 --- a/reference/fsspreadsheet-fstable.html +++ b/reference/fsspreadsheet-fstable.html @@ -1,62 +1,50 @@ - - + - - FsTable (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                -
                                                                                                - +
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - +
                                                                                                + + + + + +
                                                                                                + + +
                                                                                                +
                                                                                                +

                                                                                                FsTable Type

                                                                                                @@ -93,9 +112,7 @@

                                                                                                - - Creates an FsTable from the given name and FsRangeAddres, with totals row shown and header row shown or not, accordingly. - + Creates an FsTable from the given name and FsRangeAddres, with totals row shown and header row shown or not, accordingly.

                                                                                                @@ -124,7 +141,7 @@

                                                                                                - +

                                                                                                @@ -133,7 +150,7 @@

                                                                                                -
                                                                                                +
                                                                                                Full Usage: FsTable(name, rangeAddress, ?showTotalsRow, ?showHeaderRow) @@ -185,23 +202,6 @@

                                                                                                -
                                                                                                - - - - - - -

                                                                                                - -

                                                                                                -
                                                                                                @@ -269,7 +269,7 @@

                                                                                                - +

                                                                                                @@ -278,7 +278,7 @@

                                                                                                -
                                                                                                +
                                                                                                Full Usage: this.AddFields @@ -291,7 +291,7 @@

                                                                                                tableFields : - seq<FsTableField> + FsTableField seq
                                                                                                @@ -301,41 +301,40 @@

                                                                                                -
                                                                                                - - - - - - -

                                                                                                - - Adds a sequence of FsTableFields to the FsTable. - -

                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - tableFields - - : - seq<FsTableField> -
                                                                                                -
                                                                                                -
                                                                                                +
                                                                                                + +
                                                                                                + + + + + +

                                                                                                + Adds a sequence of FsTableFields to the FsTable. +

                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + tableFields + + : + FsTableField seq +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                - +

                                                                                                @@ -344,7 +343,7 @@

                                                                                                -
                                                                                                +
                                                                                                Full Usage: this.Copy @@ -360,40 +359,39 @@

                                                                                                -
                                                                                                - - - - - - -

                                                                                                - - Creates a deep copy of this FsTable. - -

                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - Returns: - - FsTable -
                                                                                                -
                                                                                                -
                                                                                                +
                                                                                                + +
                                                                                                + + + + + +

                                                                                                + Creates a deep copy of this FsTable. +

                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + Returns: + + FsTable +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                - +

                                                                                                @@ -402,7 +400,7 @@

                                                                                                -
                                                                                                +
                                                                                                Full Usage: this.Field @@ -438,58 +436,57 @@

                                                                                                -
                                                                                                - - - - - - -

                                                                                                - - Returns the FsTableField with given name. If an FsTableField does not exist under this name in the FsTable, adds it. - -

                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - name - - : - string -
                                                                                                -
                                                                                                -
                                                                                                - - cellsCollection - - : - FsCellsCollection -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - Returns: - - FsTableField -
                                                                                                -
                                                                                                -
                                                                                                +
                                                                                                + +
                                                                                                + + + + + +

                                                                                                + Returns the FsTableField with given name. If an FsTableField does not exist under this name in the FsTable, adds it. +

                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + name + + : + string +
                                                                                                +
                                                                                                +
                                                                                                + + cellsCollection + + : + FsCellsCollection +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + Returns: + + FsTableField +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                - +

                                                                                                @@ -498,7 +495,7 @@

                                                                                                -
                                                                                                +
                                                                                                Full Usage: this.GetColumns @@ -520,7 +517,7 @@


                                                                                                Returns: - seq<FsColumn> + FsColumn seq

                                                                                                @@ -528,54 +525,55 @@

                                                                                                -
                                                                                                - - - - - - -

                                                                                                - +

                                                                                                + +
                                                                                                + + + + + +

                                                                                                + Returns the FsColumns from the FsTable. -

                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - cellsCollection - - : - FsCellsCollection -
                                                                                                -
                                                                                                -

                                                                                                - The FsCellsCollection associated with this FsTable. -

                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - Returns: - - seq<FsColumn> -
                                                                                                -
                                                                                                -
                                                                                                +

                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + + cellsCollection + + : + FsCellsCollection +
                                                                                                +
                                                                                                +

                                                                                                + The FsCellsCollection associated with this FsTable. +

                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + Returns: + + FsColumn seq +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                - +

                                                                                                @@ -584,7 +582,7 @@

                                                                                                -
                                                                                                +
                                                                                                Full Usage: this.GetDataCellsOfColumnAt @@ -612,7 +610,7 @@


                                                                                                Returns: - seq<FsCell> + FsCell seq

                                                                                                @@ -620,61 +618,62 @@

                                                                                                -
                                                                                                - - - - - - -

                                                                                                - +

                                                                                                + +
                                                                                                + + + + + +

                                                                                                + Returns the data cells from a given FsCellsCollection with the given colum index. +

                                                                                                +
                                                                                                +
                                                                                                +

                                                                                                + Column index must fit the FsCellsCollection, not the FsTable!

                                                                                                -
                                                                                                -

                                                                                                - Column index must fit the FsCellsCollection, not the FsTable! -

                                                                                                -
                                                                                                -
                                                                                                - - cellsCollection - - : - FsCellsCollection -
                                                                                                -
                                                                                                -
                                                                                                - - colIndex - - : - int32 -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - Returns: - - seq<FsCell> -
                                                                                                -
                                                                                                -
                                                                                                +
                                                                                                +
                                                                                                + + cellsCollection + + : + FsCellsCollection +
                                                                                                +
                                                                                                +
                                                                                                + + colIndex + + : + int32 +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + Returns: + + FsCell seq +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                - +

                                                                                                @@ -683,7 +682,7 @@

                                                                                                -
                                                                                                +
                                                                                                Full Usage: this.GetField @@ -719,71 +718,72 @@

                                                                                                -
                                                                                                - - - - - - -

                                                                                                - +

                                                                                                + +
                                                                                                + + + + + +

                                                                                                + Takes a name of an FsTableField and an FsCellsCollection (belonging to the FsWorksheet of this FsTable) and returns the respective FsTableField. -

                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - name - - : - string -
                                                                                                -
                                                                                                -
                                                                                                - - cellsCollection - - : - FsCellsCollection -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - Returns: - - FsTableField -
                                                                                                -
                                                                                                -
                                                                                                - - - - - -
                                                                                                - - ArgumentException - - - if the header row has no field with the given name. -
                                                                                                +

                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + + name + + : + string +
                                                                                                +
                                                                                                +
                                                                                                + + cellsCollection + + : + FsCellsCollection +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + Returns: + + FsTableField +
                                                                                                +
                                                                                                +
                                                                                                + + + + + +
                                                                                                + + ArgumentException + + + if the header row has no field with the given name. +
                                                                                                +
                                                                                                - +

                                                                                                @@ -792,7 +792,7 @@

                                                                                                -
                                                                                                +
                                                                                                Full Usage: this.GetFieldAt @@ -828,71 +828,72 @@

                                                                                                -
                                                                                                - - - - - - -

                                                                                                - +

                                                                                                + +
                                                                                                + + + + + +

                                                                                                + Takes the index of an FsTableField and an FsCellsCollection (belonging to the FsWorksheet of this FsTable) and returns the respective FsTableField. -

                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - index - - : - int -
                                                                                                -
                                                                                                -
                                                                                                - - cellsCollection - - : - FsCellsCollection -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - Returns: - - FsTableField -
                                                                                                -
                                                                                                -
                                                                                                - - - - - -
                                                                                                - - ArgumentException - - - if the FsTable has no FsTableField with the given index. -
                                                                                                +

                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + + index + + : + int +
                                                                                                +
                                                                                                +
                                                                                                + + cellsCollection + + : + FsCellsCollection +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + Returns: + + FsTableField +
                                                                                                +
                                                                                                +
                                                                                                + + + + + +
                                                                                                + + ArgumentException + + + if the FsTable has no FsTableField with the given index. +
                                                                                                +
                                                                                                - +

                                                                                                @@ -901,7 +902,7 @@

                                                                                                -
                                                                                                +
                                                                                                Full Usage: this.GetFieldIndex @@ -937,71 +938,72 @@

                                                                                                -
                                                                                                - - - - - - -

                                                                                                - +

                                                                                                + +
                                                                                                + + + + + +

                                                                                                + Takes a name of an FsTableField and an FsCellsCollection (belonging to the FsWorksheet of this FsTable) and returns the index of the respective FsTableField. -

                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - name - - : - string -
                                                                                                -
                                                                                                -
                                                                                                - - cellsCollection - - : - FsCellsCollection -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - Returns: - - int -
                                                                                                -
                                                                                                -
                                                                                                - - - - - -
                                                                                                - - ArgumentException - - - if the header row has no field with the given name. -
                                                                                                +

                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + + name + + : + string +
                                                                                                +
                                                                                                +
                                                                                                + + cellsCollection + + : + FsCellsCollection +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + Returns: + + int +
                                                                                                +
                                                                                                +
                                                                                                + + + + + +
                                                                                                + + ArgumentException + + + if the header row has no field with the given name. +
                                                                                                +
                                                                                                - +

                                                                                                @@ -1010,7 +1012,7 @@

                                                                                                -
                                                                                                +
                                                                                                Full Usage: this.GetFieldNames @@ -1030,7 +1032,7 @@


                                                                                                Returns: - Dictionary<string, FsTableField> + Dictionary<string, FsTableField>

                                                                                                @@ -1038,50 +1040,49 @@

                                                                                                -
                                                                                                - - - - - - -

                                                                                                - - Returns all fieldnames as `fieldname*FsTableField` dictionary. - -

                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - cellsCollection - - : - FsCellsCollection -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - Returns: - - Dictionary<string, FsTableField> -
                                                                                                -
                                                                                                -
                                                                                                +
                                                                                                + +
                                                                                                + + + + + +

                                                                                                + Returns all fieldnames as `fieldname*FsTableField` dictionary. +

                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + cellsCollection + + : + FsCellsCollection +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + Returns: + + Dictionary<string, FsTableField> +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                - +

                                                                                                @@ -1090,7 +1091,7 @@

                                                                                                -
                                                                                                +
                                                                                                Full Usage: this.GetFields @@ -1110,7 +1111,7 @@


                                                                                                Returns: - seq<FsTableField> + FsTableField seq

                                                                                                @@ -1118,50 +1119,49 @@

                                                                                                -
                                                                                                - - - - - - -

                                                                                                - - The FsTableFields of this FsTable. - -

                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - cellsCollection - - : - FsCellsCollection -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - Returns: - - seq<FsTableField> -
                                                                                                -
                                                                                                -
                                                                                                +
                                                                                                + +
                                                                                                + + + + + +

                                                                                                + The FsTableFields of this FsTable. +

                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + cellsCollection + + : + FsCellsCollection +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + Returns: + + FsTableField seq +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                - +

                                                                                                @@ -1170,7 +1170,7 @@

                                                                                                -
                                                                                                +
                                                                                                Full Usage: this.GetHeaderCellOfColumn @@ -1206,70 +1206,71 @@

                                                                                                -
                                                                                                - - - - - - -

                                                                                                - +

                                                                                                + +
                                                                                                + + + + + +

                                                                                                + Returns the header cell of a given FsRangeColumn from a given FsCellsCollection. -

                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - cellsCollection - - : - FsCellsCollection -
                                                                                                -
                                                                                                -
                                                                                                - - column - - : - FsRangeColumn -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - Returns: - - FsCell -
                                                                                                -
                                                                                                -
                                                                                                - - - - - -
                                                                                                - - NullReferenceException - - - if the FsCell cannot be found. -
                                                                                                +

                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + + cellsCollection + + : + FsCellsCollection +
                                                                                                +
                                                                                                +
                                                                                                + + column + + : + FsRangeColumn +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + Returns: + + FsCell +
                                                                                                +
                                                                                                +
                                                                                                + + + + + +
                                                                                                + + NullReferenceException + + + if the FsCell cannot be found. +
                                                                                                +
                                                                                                - +

                                                                                                @@ -1278,7 +1279,7 @@

                                                                                                -
                                                                                                +
                                                                                                Full Usage: this.GetHeaderCellOfColumnAt @@ -1314,70 +1315,71 @@

                                                                                                -
                                                                                                - - - - - - -

                                                                                                - +

                                                                                                + +
                                                                                                + + + + + +

                                                                                                + Returns the header cell from a given FsCellsCollection with the given colum index. -

                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - cellsCollection - - : - FsCellsCollection -
                                                                                                -
                                                                                                -
                                                                                                - - colIndex - - : - int -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - Returns: - - FsCell -
                                                                                                -
                                                                                                -
                                                                                                - - - - - -
                                                                                                - - NullReferenceException - - - if the FsCell cannot be found. -
                                                                                                +

                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + + cellsCollection + + : + FsCellsCollection +
                                                                                                +
                                                                                                +
                                                                                                + + colIndex + + : + int +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + Returns: + + FsCell +
                                                                                                +
                                                                                                +
                                                                                                + + + + + +
                                                                                                + + NullReferenceException + + + if the FsCell cannot be found. +
                                                                                                +
                                                                                                - +

                                                                                                @@ -1386,7 +1388,7 @@

                                                                                                -
                                                                                                +
                                                                                                Full Usage: this.GetHeaderCellOfTableField @@ -1422,58 +1424,57 @@

                                                                                                -
                                                                                                - - - - - - -

                                                                                                - - Returns the header cell of a given FsTableField from a given FsCellsCollection. - -

                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - cellsCollection - - : - FsCellsCollection -
                                                                                                -
                                                                                                -
                                                                                                - - tableField - - : - FsTableField -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - Returns: - - FsCell -
                                                                                                -
                                                                                                -
                                                                                                +
                                                                                                + +
                                                                                                + + + + + +

                                                                                                + Returns the header cell of a given FsTableField from a given FsCellsCollection. +

                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + cellsCollection + + : + FsCellsCollection +
                                                                                                +
                                                                                                +
                                                                                                + + tableField + + : + FsTableField +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + Returns: + + FsCell +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                - +

                                                                                                @@ -1482,7 +1483,7 @@

                                                                                                -
                                                                                                +
                                                                                                Full Usage: this.GetHeaderCellOfTableFieldAt @@ -1518,70 +1519,71 @@

                                                                                                -
                                                                                                - - - - - - -

                                                                                                - +

                                                                                                + +
                                                                                                + + + + + +

                                                                                                + Returns the header cell from an FsTableField with the given index using a given FsCellsCollection. -

                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - cellsCollection - - : - FsCellsCollection -
                                                                                                -
                                                                                                -
                                                                                                - - tableFieldIndex - - : - int -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - Returns: - - FsCell -
                                                                                                -
                                                                                                -
                                                                                                - - - - - -
                                                                                                - - NullReferenceException - - - if the FsCell cannot be found. -
                                                                                                +

                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + + cellsCollection + + : + FsCellsCollection +
                                                                                                +
                                                                                                +
                                                                                                + + tableFieldIndex + + : + int +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + Returns: + + FsCell +
                                                                                                +
                                                                                                +
                                                                                                + + + + + +
                                                                                                + + NullReferenceException + + + if the FsCell cannot be found. +
                                                                                                +
                                                                                                - +

                                                                                                @@ -1590,7 +1592,7 @@

                                                                                                -
                                                                                                +
                                                                                                Full Usage: this.GetHeaderRow @@ -1618,23 +1620,6 @@

                                                                                                -
                                                                                                - - - - - - -

                                                                                                - -

                                                                                                -
                                                                                                @@ -1659,7 +1644,7 @@

                                                                                                - +

                                                                                                @@ -1668,7 +1653,7 @@

                                                                                                -
                                                                                                +
                                                                                                Full Usage: this.GetRows @@ -1690,7 +1675,7 @@


                                                                                                Returns: - seq<FsRow> + FsRow seq

                                                                                                @@ -1698,54 +1683,55 @@

                                                                                                -
                                                                                                - - - - - - -

                                                                                                - +

                                                                                                + +
                                                                                                + + + + + +

                                                                                                + Returns the FsRows from the FsTable. -

                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - cellsCollection - - : - FsCellsCollection -
                                                                                                -
                                                                                                -

                                                                                                - The FsCellsCollection associated with this FsTable. -

                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - Returns: - - seq<FsRow> -
                                                                                                -
                                                                                                -
                                                                                                +

                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + + cellsCollection + + : + FsCellsCollection +
                                                                                                +
                                                                                                +

                                                                                                + The FsCellsCollection associated with this FsTable. +

                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + Returns: + + FsRow seq +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                - +

                                                                                                @@ -1754,7 +1740,7 @@

                                                                                                -
                                                                                                +
                                                                                                Full Usage: this.GetUniqueName @@ -1804,79 +1790,80 @@

                                                                                                -
                                                                                                - - - - - - -

                                                                                                - +

                                                                                                + +
                                                                                                + + + + + +

                                                                                                + Returns a unique name consisting of the original name and an initial offset that is raised if the original name with that offset is already present. -

                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - originalName - - : - string -
                                                                                                -
                                                                                                -

                                                                                                - Header name that was tried to be used. -

                                                                                                -
                                                                                                -
                                                                                                - - initialOffset - - : - int32 -
                                                                                                -
                                                                                                -

                                                                                                - First number that together with the originalName, leads to a unique column header. -

                                                                                                -
                                                                                                -
                                                                                                - - enforceOffset - - : - bool -
                                                                                                -
                                                                                                -

                                                                                                - If true, the initial offset is always applied. -

                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - Returns: - - string -
                                                                                                -
                                                                                                -
                                                                                                +

                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + + originalName + + : + string +
                                                                                                +
                                                                                                +

                                                                                                + Header name that was tried to be used. +

                                                                                                +
                                                                                                +
                                                                                                + + initialOffset + + : + int32 +
                                                                                                +
                                                                                                +

                                                                                                + First number that together with the originalName, leads to a unique column header. +

                                                                                                +
                                                                                                +
                                                                                                + + enforceOffset + + : + bool +
                                                                                                +
                                                                                                +

                                                                                                + If true, the initial offset is always applied. +

                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + Returns: + + string +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                - +

                                                                                                @@ -1885,7 +1872,7 @@

                                                                                                -
                                                                                                +
                                                                                                Full Usage: this.InitFields @@ -1898,7 +1885,7 @@

                                                                                                fieldNames : - seq<string> + string seq
                                                                                                @@ -1908,41 +1895,40 @@

                                                                                                -
                                                                                                - - - - - - -

                                                                                                - - Creates and adds FsTableFields from a sequence of field names to the FsTable. - -

                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - fieldNames - - : - seq<string> -
                                                                                                -
                                                                                                -
                                                                                                +
                                                                                                + +
                                                                                                + + + + + +

                                                                                                + Creates and adds FsTableFields from a sequence of field names to the FsTable. +

                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + fieldNames + + : + string seq +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                - +

                                                                                                @@ -1951,7 +1937,7 @@

                                                                                                -
                                                                                                +
                                                                                                Full Usage: this.Name @@ -1967,40 +1953,39 @@

                                                                                                -
                                                                                                - - - - - - -

                                                                                                - - The name of the FsTable. - -

                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - Returns: - - string -
                                                                                                -
                                                                                                -
                                                                                                +
                                                                                                + +
                                                                                                + + + + + +

                                                                                                + The name of the FsTable. +

                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + Returns: + + string +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                - +

                                                                                                @@ -2009,7 +1994,7 @@

                                                                                                -
                                                                                                +
                                                                                                Full Usage: this.RenameField @@ -2040,61 +2025,62 @@

                                                                                                -
                                                                                                - - - - - - -

                                                                                                - +

                                                                                                + +
                                                                                                + + + + + +

                                                                                                + Renames a fieldname of the FsTable if it exists. Else fails. -

                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - oldName - - : - string -
                                                                                                -
                                                                                                -
                                                                                                - - newName - - : - string -
                                                                                                -
                                                                                                -
                                                                                                - - - - - -
                                                                                                - - ArgumentException - - - if the FsTableField does not exist in the FsTable. -
                                                                                                +

                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + + oldName + + : + string +
                                                                                                +
                                                                                                +
                                                                                                + + newName + + : + string +
                                                                                                +
                                                                                                +
                                                                                                + + + + + +
                                                                                                + + ArgumentException + + + if the FsTableField does not exist in the FsTable. +
                                                                                                +
                                                                                                - +

                                                                                                @@ -2103,7 +2089,7 @@

                                                                                                -
                                                                                                +
                                                                                                Full Usage: this.RescanFieldNames @@ -2126,43 +2112,42 @@

                                                                                                -
                                                                                                - - - - - - -

                                                                                                - - Updates the TableFields according to the range of the table and the underlying cellcollection. +

                                                                                                + +
                                                                                                + + + + + +

                                                                                                + Updates the TableFields according to the range of the table and the underlying cellcollection. 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. - -

                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - cellsCollection - - : - FsCellsCollection -
                                                                                                -
                                                                                                -
                                                                                                +

                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + + cellsCollection + + : + FsCellsCollection +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                - +

                                                                                                @@ -2171,7 +2156,7 @@

                                                                                                -
                                                                                                +
                                                                                                Full Usage: this.RescanRange @@ -2184,21 +2169,16 @@

                                                                                                - - +

                                                                                                - - Updates the FsRangeAddress of the FsTable according to the FsTableFields associated. - + Updates the FsRangeAddress of the FsTable according to the FsTableFields associated.

                                                                                                @@ -2206,7 +2186,7 @@

                                                                                                - +

                                                                                                @@ -2215,7 +2195,7 @@

                                                                                                -
                                                                                                +
                                                                                                Full Usage: this.ShowHeaderRow @@ -2228,21 +2208,16 @@

                                                                                                - - +

                                                                                                - - Gets or sets if the header row is shown. - + Gets or sets if the header row is shown.

                                                                                                @@ -2250,7 +2225,7 @@

                                                                                                - +

                                                                                                @@ -2259,7 +2234,7 @@

                                                                                                -
                                                                                                +
                                                                                                Full Usage: this.TryGetHeaderCellByFieldName @@ -2295,59 +2270,58 @@

                                                                                                -
                                                                                                - - - - - - -

                                                                                                - - Returns the header cell from an FsTableField with the given name using an FsCellsCollection in the FsTable if the cell exists. +

                                                                                                + +
                                                                                                + + + + + +

                                                                                                + Returns the header cell from an FsTableField with the given name using an FsCellsCollection in the FsTable if the cell exists. Else returns None. - -

                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - cellsCollection - - : - FsCellsCollection -
                                                                                                -
                                                                                                -
                                                                                                - - fieldName - - : - string -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - Returns: - - FsCell option -
                                                                                                -
                                                                                                -
                                                                                                +

                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + + cellsCollection + + : + FsCellsCollection +
                                                                                                +
                                                                                                +
                                                                                                + + fieldName + + : + string +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + Returns: + + FsCell option +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                - +

                                                                                                @@ -2356,7 +2330,7 @@

                                                                                                -
                                                                                                +
                                                                                                Full Usage: this.TryGetHeaderCellOfColumn @@ -2392,58 +2366,57 @@

                                                                                                -
                                                                                                - - - - - - -

                                                                                                - - Returns the header cell of a given FsRangeColumn from a given FsCellsCollection if the cell exists. Else returns None. - -

                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - cellsCollection - - : - FsCellsCollection -
                                                                                                -
                                                                                                -
                                                                                                - - column - - : - FsRangeColumn -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - Returns: - - FsCell option -
                                                                                                -
                                                                                                -
                                                                                                +
                                                                                                + +
                                                                                                + + + + + +

                                                                                                + Returns the header cell of a given FsRangeColumn from a given FsCellsCollection if the cell exists. Else returns None. +

                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + cellsCollection + + : + FsCellsCollection +
                                                                                                +
                                                                                                +
                                                                                                + + column + + : + FsRangeColumn +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + Returns: + + FsCell option +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                - +

                                                                                                @@ -2452,7 +2425,7 @@

                                                                                                -
                                                                                                +
                                                                                                Full Usage: this.TryGetHeaderCellOfColumnAt @@ -2488,58 +2461,57 @@

                                                                                                -
                                                                                                - - - - - - -

                                                                                                - - Returns the header cell from a given FsCellsCollection with the given colum index if the cell exists. Else returns None. - -

                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - cellsCollection - - : - FsCellsCollection -
                                                                                                -
                                                                                                -
                                                                                                - - colIndex - - : - int -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - Returns: - - FsCell option -
                                                                                                -
                                                                                                -
                                                                                                +
                                                                                                + +
                                                                                                + + + + + +

                                                                                                + Returns the header cell from a given FsCellsCollection with the given colum index if the cell exists. Else returns None. +

                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + cellsCollection + + : + FsCellsCollection +
                                                                                                +
                                                                                                +
                                                                                                + + colIndex + + : + int +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + Returns: + + FsCell option +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                - +

                                                                                                @@ -2548,7 +2520,7 @@

                                                                                                -
                                                                                                +
                                                                                                Full Usage: this.TryGetHeaderCellOfTableFieldAt @@ -2584,59 +2556,58 @@

                                                                                                -
                                                                                                - - - - - - -

                                                                                                - - Returns the header cell from an FsTableField with the given index using a given FsCellsCollection if the cell exists. +

                                                                                                + +
                                                                                                + + + + + +

                                                                                                + Returns the header cell from an FsTableField with the given index using a given FsCellsCollection if the cell exists. Else returns None. - -

                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - cellsCollection - - : - FsCellsCollection -
                                                                                                -
                                                                                                -
                                                                                                - - tableFieldIndex - - : - int -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - Returns: - - FsCell option -
                                                                                                -
                                                                                                -
                                                                                                +

                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + + cellsCollection + + : + FsCellsCollection +
                                                                                                +
                                                                                                +
                                                                                                + + tableFieldIndex + + : + int +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + Returns: + + FsCell option +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                - +

                                                                                                @@ -2645,7 +2616,7 @@

                                                                                                -
                                                                                                +
                                                                                                Full Usage: this.TryGetHeaderRow @@ -2673,23 +2644,6 @@

                                                                                                -
                                                                                                - - - - - - -

                                                                                                - -

                                                                                                -
                                                                                                @@ -2733,7 +2687,7 @@

                                                                                                - +

                                                                                                @@ -2742,7 +2696,7 @@

                                                                                                -
                                                                                                +
                                                                                                Full Usage: FsTable.addFields tableFields table @@ -2755,7 +2709,7 @@

                                                                                                tableFields : - seq<FsTableField> + FsTableField seq
                                                                                                @@ -2778,58 +2732,57 @@

                                                                                                -
                                                                                                - - - - - - -

                                                                                                - - Adds a sequence of FsTableFields to a given FsTable. - -

                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - tableFields - - : - seq<FsTableField> -
                                                                                                -
                                                                                                -
                                                                                                - - table - - : - FsTable -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - Returns: - - FsTable -
                                                                                                -
                                                                                                -
                                                                                                +
                                                                                                + +
                                                                                                + + + + + +

                                                                                                + Adds a sequence of FsTableFields to a given FsTable. +

                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + tableFields + + : + FsTableField seq +
                                                                                                +
                                                                                                +
                                                                                                + + table + + : + FsTable +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + Returns: + + FsTable +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                - +

                                                                                                @@ -2838,7 +2791,7 @@

                                                                                                -
                                                                                                +
                                                                                                Full Usage: FsTable.copy table @@ -2866,50 +2819,49 @@

                                                                                                -
                                                                                                - - - - - - -

                                                                                                - - Returns a deep copy of a given FsTable. - -

                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - table - - : - FsTable -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - Returns: - - FsTable -
                                                                                                -
                                                                                                -
                                                                                                +
                                                                                                + +
                                                                                                + + + + + +

                                                                                                + Returns a deep copy of a given FsTable. +

                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + table + + : + FsTable +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + Returns: + + FsTable +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                - +

                                                                                                @@ -2918,7 +2870,7 @@

                                                                                                -
                                                                                                +
                                                                                                Full Usage: FsTable.getDataCellsOfColumnIndexAt cellsCollection colIndex table @@ -2954,7 +2906,7 @@


                                                                                                Returns: - seq<FsCell> + FsCell seq

                                                                                                @@ -2962,69 +2914,70 @@

                                                                                                -
                                                                                                - - - - - - -

                                                                                                - +

                                                                                                + +
                                                                                                + + + + + +

                                                                                                + Returns the data cells from a given FsCellsCollection with the given colum index in a given FsTable. +

                                                                                                +
                                                                                                +
                                                                                                +

                                                                                                + Column index must fit the FsCellsCollection, not the FsTable!

                                                                                                -
                                                                                                -

                                                                                                - Column index must fit the FsCellsCollection, not the FsTable! -

                                                                                                -
                                                                                                -
                                                                                                - - cellsCollection - - : - FsCellsCollection -
                                                                                                -
                                                                                                -
                                                                                                - - colIndex - - : - int -
                                                                                                -
                                                                                                -
                                                                                                - - table - - : - FsTable -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - Returns: - - seq<FsCell> -
                                                                                                -
                                                                                                -
                                                                                                +
                                                                                                +
                                                                                                + + cellsCollection + + : + FsCellsCollection +
                                                                                                +
                                                                                                +
                                                                                                + + colIndex + + : + int +
                                                                                                +
                                                                                                +
                                                                                                + + table + + : + FsTable +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + Returns: + + FsCell seq +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                - +

                                                                                                @@ -3033,7 +2986,7 @@

                                                                                                -
                                                                                                +
                                                                                                Full Usage: FsTable.getField name cellsCollection table @@ -3077,79 +3030,80 @@

                                                                                                -
                                                                                                - - - - - - -

                                                                                                - +

                                                                                                + +
                                                                                                + + + + + +

                                                                                                + Takes a name of an FsTableField and an FsCellsCollection (belonging to the FsWorksheet of this FsTable) and returns the respective FsTableField. -

                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - name - - : - string -
                                                                                                -
                                                                                                -
                                                                                                - - cellsCollection - - : - FsCellsCollection -
                                                                                                -
                                                                                                -
                                                                                                - - table - - : - FsTable -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - Returns: - - FsTableField -
                                                                                                -
                                                                                                -
                                                                                                - - - - - -
                                                                                                - - ArgumentException - - - if the header row has no field with the given name. -
                                                                                                +

                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + + name + + : + string +
                                                                                                +
                                                                                                +
                                                                                                + + cellsCollection + + : + FsCellsCollection +
                                                                                                +
                                                                                                +
                                                                                                + + table + + : + FsTable +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + Returns: + + FsTableField +
                                                                                                +
                                                                                                +
                                                                                                + + + + + +
                                                                                                + + ArgumentException + + + if the header row has no field with the given name. +
                                                                                                +
                                                                                                - +

                                                                                                @@ -3158,7 +3112,7 @@

                                                                                                -
                                                                                                +
                                                                                                Full Usage: FsTable.getHeaderCellOfColumn cellsCollection column table @@ -3202,78 +3156,79 @@

                                                                                                -
                                                                                                - - - - - - -

                                                                                                - +

                                                                                                + +
                                                                                                + + + + + +

                                                                                                + Returns the header cell of a given FsRangeColumn from a given FsCellsCollection in a given FsTable. -

                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - cellsCollection - - : - FsCellsCollection -
                                                                                                -
                                                                                                -
                                                                                                - - column - - : - FsRangeColumn -
                                                                                                -
                                                                                                -
                                                                                                - - table - - : - FsTable -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - Returns: - - FsCell -
                                                                                                -
                                                                                                -
                                                                                                - - - - - -
                                                                                                - - NullReferenceException - - - if the FsCell cannot be found. -
                                                                                                +

                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + + cellsCollection + + : + FsCellsCollection +
                                                                                                +
                                                                                                +
                                                                                                + + column + + : + FsRangeColumn +
                                                                                                +
                                                                                                +
                                                                                                + + table + + : + FsTable +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + Returns: + + FsCell +
                                                                                                +
                                                                                                +
                                                                                                + + + + + +
                                                                                                + + NullReferenceException + + + if the FsCell cannot be found. +
                                                                                                +
                                                                                                - +

                                                                                                @@ -3282,7 +3237,7 @@

                                                                                                -
                                                                                                +
                                                                                                Full Usage: FsTable.getHeaderCellOfColumnIndexAt cellsCollection colIndex table @@ -3326,78 +3281,79 @@

                                                                                                -
                                                                                                - - - - - - -

                                                                                                - +

                                                                                                + +
                                                                                                + + + + + +

                                                                                                + Returns the header cell from a given FsCellsCollection with the given colum index in a given FsTable. -

                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - cellsCollection - - : - FsCellsCollection -
                                                                                                -
                                                                                                -
                                                                                                - - colIndex - - : - int -
                                                                                                -
                                                                                                -
                                                                                                - - table - - : - FsTable -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - Returns: - - FsCell -
                                                                                                -
                                                                                                -
                                                                                                - - - - - -
                                                                                                - - NullReferenceException - - - if the FsCell cannot be found. -
                                                                                                +

                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + + cellsCollection + + : + FsCellsCollection +
                                                                                                +
                                                                                                +
                                                                                                + + colIndex + + : + int +
                                                                                                +
                                                                                                +
                                                                                                + + table + + : + FsTable +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + Returns: + + FsCell +
                                                                                                +
                                                                                                +
                                                                                                + + + + + +
                                                                                                + + NullReferenceException + + + if the FsCell cannot be found. +
                                                                                                +
                                                                                                - +

                                                                                                @@ -3406,7 +3362,7 @@

                                                                                                -
                                                                                                +
                                                                                                Full Usage: FsTable.getHeaderCellOfTableField cellsCollection tableField table @@ -3450,66 +3406,65 @@

                                                                                                -
                                                                                                - - - - - - -

                                                                                                - - Returns the header cell of a given FsTableField from a given FsCellsCollection in a given FsTable. - -

                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - cellsCollection - - : - FsCellsCollection -
                                                                                                -
                                                                                                -
                                                                                                - - tableField - - : - FsTableField -
                                                                                                -
                                                                                                -
                                                                                                - - table - - : - FsTable -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - Returns: - - FsCell -
                                                                                                -
                                                                                                -
                                                                                                +
                                                                                                + +
                                                                                                + + + + + +

                                                                                                + Returns the header cell of a given FsTableField from a given FsCellsCollection in a given FsTable. +

                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + cellsCollection + + : + FsCellsCollection +
                                                                                                +
                                                                                                +
                                                                                                + + tableField + + : + FsTableField +
                                                                                                +
                                                                                                +
                                                                                                + + table + + : + FsTable +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + Returns: + + FsCell +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                - +

                                                                                                @@ -3518,7 +3473,7 @@

                                                                                                -
                                                                                                +
                                                                                                Full Usage: FsTable.getHeaderCellOfTableFieldIndexAt cellsCollection tableFieldIndex table @@ -3562,78 +3517,79 @@

                                                                                                -
                                                                                                - - - - - - -

                                                                                                - +

                                                                                                + +
                                                                                                + + + + + +

                                                                                                + Returns the header cell from an FsTableField with the given index using a given FsCellsCollection in a given FsTable. -

                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - cellsCollection - - : - FsCellsCollection -
                                                                                                -
                                                                                                -
                                                                                                - - tableFieldIndex - - : - int -
                                                                                                -
                                                                                                -
                                                                                                - - table - - : - FsTable -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - Returns: - - FsCell -
                                                                                                -
                                                                                                -
                                                                                                - - - - - -
                                                                                                - - NullReferenceException - - - if the FsCell cannot be found. -
                                                                                                +

                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + + cellsCollection + + : + FsCellsCollection +
                                                                                                +
                                                                                                +
                                                                                                + + tableFieldIndex + + : + int +
                                                                                                +
                                                                                                +
                                                                                                + + table + + : + FsTable +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + Returns: + + FsCell +
                                                                                                +
                                                                                                +
                                                                                                + + + + + +
                                                                                                + + NullReferenceException + + + if the FsCell cannot be found. +
                                                                                                +
                                                                                                - +

                                                                                                @@ -3642,7 +3598,7 @@

                                                                                                -
                                                                                                +
                                                                                                Full Usage: FsTable.getUniqueNames originalName initialOffset enforceOffset table @@ -3702,100 +3658,101 @@

                                                                                                -
                                                                                                - - - - - - -

                                                                                                - +

                                                                                                + +
                                                                                                + + + + + +

                                                                                                + Returns a unique name consisting of the original name and an initial offset that is raised if the original name with that offset is already present. -

                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - originalName - - : - string -
                                                                                                -
                                                                                                -

                                                                                                - Header name that was tried to be used. -

                                                                                                -
                                                                                                -
                                                                                                - - initialOffset - - : - int32 -
                                                                                                -
                                                                                                +

                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + + originalName + + : + string +
                                                                                                +
                                                                                                +

                                                                                                + Header name that was tried to be used. +

                                                                                                +
                                                                                                +
                                                                                                + + initialOffset + + : + int32 +
                                                                                                +
                                                                                                +

                                                                                                + First number that together with the originalName, leads to a unique column header. +

                                                                                                +
                                                                                                +
                                                                                                + + enforceOffset + + : + bool +
                                                                                                +
                                                                                                +

                                                                                                + If true, the initial offset is always applied. +

                                                                                                +
                                                                                                +
                                                                                                + + table + + : + FsTable +
                                                                                                +
                                                                                                +

                                                                                                + The FsTable on which this function is called. +

                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + Returns: + + string +
                                                                                                +
                                                                                                +
                                                                                                + + + + + +
                                                                                                +

                                                                                                - First number that together with the originalName, leads to a unique column header. -

                                                                                                - -
                                                                                                - - enforceOffset - - : - bool -
                                                                                                -
                                                                                                -

                                                                                                - If true, the initial offset is always applied. -

                                                                                                -
                                                                                                -
                                                                                                - - table - - : - FsTable -
                                                                                                -
                                                                                                -

                                                                                                - The FsTable on which this function is called. -

                                                                                                -
                                                                                                -

                                                                                                -
                                                                                                -
                                                                                                - - Returns: - - string -
                                                                                                -
                                                                                                -
                                                                                                - - - - -
                                                                                                - -

                                                                                                - - - FsTable.initFields fieldNames table - - + + + FsTable.initFields fieldNames table + +

                                                                                                -
                                                                                                +
                                                                                                Full Usage: FsTable.initFields fieldNames table @@ -3808,7 +3765,7 @@

                                                                                                fieldNames : - seq<string> + string seq
                                                                                                @@ -3831,58 +3788,57 @@

                                                                                                -
                                                                                                - - - - - - -

                                                                                                - - Creates and adds FsTableFields from a sequence of field names to a given FsTable. - -

                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - fieldNames - - : - seq<string> -
                                                                                                -
                                                                                                -
                                                                                                - - table - - : - FsTable -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - Returns: - - FsTable -
                                                                                                -
                                                                                                -
                                                                                                +
                                                                                                + +
                                                                                                + + + + + +

                                                                                                + Creates and adds FsTableFields from a sequence of field names to a given FsTable. +

                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + fieldNames + + : + string seq +
                                                                                                +
                                                                                                +
                                                                                                + + table + + : + FsTable +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + Returns: + + FsTable +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                - +

                                                                                                @@ -3891,7 +3847,7 @@

                                                                                                -
                                                                                                +
                                                                                                Full Usage: FsTable.renameField oldName newName table @@ -3935,78 +3891,79 @@

                                                                                                -
                                                                                                - - - - - - -

                                                                                                - +

                                                                                                + +
                                                                                                + + + + + +

                                                                                                + Renames a fieldname of the FsTable if it exists. Else fails. -

                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - oldName - - : - string -
                                                                                                -
                                                                                                -
                                                                                                - - newName - - : - string -
                                                                                                -
                                                                                                -
                                                                                                - - table - - : - FsTable -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - Returns: - - FsTable -
                                                                                                -
                                                                                                -
                                                                                                - - - - - -
                                                                                                - - ArgumentException - - - if the FsTableField does not exist in the FsTable. -
                                                                                                +

                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + + oldName + + : + string +
                                                                                                +
                                                                                                +
                                                                                                + + newName + + : + string +
                                                                                                +
                                                                                                +
                                                                                                + + table + + : + FsTable +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + Returns: + + FsTable +
                                                                                                +
                                                                                                +
                                                                                                + + + + + +
                                                                                                + + ArgumentException + + + if the FsTableField does not exist in the FsTable. +
                                                                                                +
                                                                                                - +

                                                                                                @@ -4015,7 +3972,7 @@

                                                                                                -
                                                                                                +
                                                                                                Full Usage: FsTable.rescanRange table @@ -4043,50 +4000,49 @@

                                                                                                -
                                                                                                - - - - - - -

                                                                                                - - Updates the FsRangeAddress of a given FsTable according to the FsTableFields associated. - -

                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - table - - : - FsTable -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - Returns: - - FsTable -
                                                                                                -
                                                                                                -
                                                                                                +
                                                                                                + +
                                                                                                + + + + + +

                                                                                                + Updates the FsRangeAddress of a given FsTable according to the FsTableFields associated. +

                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + table + + : + FsTable +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + Returns: + + FsTable +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                - +

                                                                                                @@ -4095,7 +4051,7 @@

                                                                                                -
                                                                                                +
                                                                                                Full Usage: FsTable.tryGetHeaderCellByFieldName cellsCollection fieldName table @@ -4139,67 +4095,66 @@

                                                                                                -
                                                                                                - - - - - - -

                                                                                                - - Returns the header cell from an FsTableField with the given name using an FsCellsCollection in a given FsTable if the cell exists. +

                                                                                                + +
                                                                                                + + + + + +

                                                                                                + Returns the header cell from an FsTableField with the given name using an FsCellsCollection in a given FsTable if the cell exists. Else returns None. - -

                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - cellsCollection - - : - FsCellsCollection -
                                                                                                -
                                                                                                -
                                                                                                - - fieldName - - : - string -
                                                                                                -
                                                                                                -
                                                                                                - - table - - : - FsTable -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - Returns: - - FsCell option -
                                                                                                -
                                                                                                -
                                                                                                +

                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + + cellsCollection + + : + FsCellsCollection +
                                                                                                +
                                                                                                +
                                                                                                + + fieldName + + : + string +
                                                                                                +
                                                                                                +
                                                                                                + + table + + : + FsTable +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + Returns: + + FsCell option +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                - +

                                                                                                @@ -4208,7 +4163,7 @@

                                                                                                -
                                                                                                +
                                                                                                Full Usage: FsTable.tryGetHeaderCellOfColumn cellsCollection column table @@ -4252,67 +4207,66 @@

                                                                                                -
                                                                                                - - - - - - -

                                                                                                - - Returns the header cell of a given FsRangeColumn from a given FsCellsCollection in a given FsTable if the cell exists. +

                                                                                                + +
                                                                                                + + + + + +

                                                                                                + Returns the header cell of a given FsRangeColumn from a given FsCellsCollection in a given FsTable if the cell exists. Else returns None. - -

                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - cellsCollection - - : - FsCellsCollection -
                                                                                                -
                                                                                                -
                                                                                                - - column - - : - FsRangeColumn -
                                                                                                -
                                                                                                -
                                                                                                - - table - - : - FsTable -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - Returns: - - FsCell option -
                                                                                                -
                                                                                                -
                                                                                                +

                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + + cellsCollection + + : + FsCellsCollection +
                                                                                                +
                                                                                                +
                                                                                                + + column + + : + FsRangeColumn +
                                                                                                +
                                                                                                +
                                                                                                + + table + + : + FsTable +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + Returns: + + FsCell option +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                - +

                                                                                                @@ -4321,7 +4275,7 @@

                                                                                                -
                                                                                                +
                                                                                                Full Usage: FsTable.tryGetHeaderCellOfColumnIndexAt cellsCollection colIndex table @@ -4365,67 +4319,66 @@

                                                                                                -
                                                                                                - - - - - - -

                                                                                                - - Returns the header cell from a given FsCellsCollection with the given column index in a given FsTable if the cell exists. Else +

                                                                                                + +
                                                                                                + + + + + +

                                                                                                + Returns the header cell from a given FsCellsCollection with the given column index in a given FsTable if the cell exists. Else returns None. - -

                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - cellsCollection - - : - FsCellsCollection -
                                                                                                -
                                                                                                -
                                                                                                - - colIndex - - : - int -
                                                                                                -
                                                                                                -
                                                                                                - - table - - : - FsTable -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - Returns: - - FsCell option -
                                                                                                -
                                                                                                -
                                                                                                +

                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + + cellsCollection + + : + FsCellsCollection +
                                                                                                +
                                                                                                +
                                                                                                + + colIndex + + : + int +
                                                                                                +
                                                                                                +
                                                                                                + + table + + : + FsTable +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + Returns: + + FsCell option +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                - +

                                                                                                @@ -4434,7 +4387,7 @@

                                                                                                -
                                                                                                +
                                                                                                Full Usage: FsTable.tryGetHeaderCellOfTableFieldIndexAt cellsCollection tableFieldIndex table @@ -4478,80 +4431,84 @@

                                                                                                -
                                                                                                - - - - - - -

                                                                                                - - Returns the header cell from an FsTableField with the given index using a given FsCellsCollection if the cell exists +

                                                                                                + +
                                                                                                + + + + + +

                                                                                                + Returns the header cell from an FsTableField with the given index using a given FsCellsCollection if the cell exists in a given FsTable. Else returns None. - -

                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - cellsCollection - - : - FsCellsCollection -
                                                                                                -
                                                                                                -
                                                                                                - - tableFieldIndex - - : - int -
                                                                                                -
                                                                                                -
                                                                                                - - table - - : - FsTable -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                -
                                                                                                - - Returns: - - FsCell option -
                                                                                                -
                                                                                                -
                                                                                                +

                                                                                                +
                                                                                                + +
                                                                                                +
                                                                                                + + cellsCollection + + : + FsCellsCollection +
                                                                                                +
                                                                                                +
                                                                                                + + tableFieldIndex + + : + int +
                                                                                                +
                                                                                                +
                                                                                                + + table + + : + FsTable +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                + + Returns: + + FsCell option +
                                                                                                +
                                                                                                +
                                                                                                +
                                                                                                -

                                                                                                -
                                                                                                -

                                                                                                +

                                                                                                + + + +
                                                                                                +
                                                                                                  +

                                                                                                  Type something to start searching.

                                                                                                  +
                                                                                                  +
                                                                                                  + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-fstablefield.html b/reference/fsspreadsheet-fstablefield.html index 80929976..1abae861 100644 --- a/reference/fsspreadsheet-fstablefield.html +++ b/reference/fsspreadsheet-fstablefield.html @@ -1,62 +1,50 @@ - - + - - FsTableField (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                  -
                                                                                                  - +
                                                                                                  -
                                                                                                  -
                                                                                                  -
                                                                                                  - +
                                                                                                  + + + + + +
                                                                                                  + + +
                                                                                                  +
                                                                                                  +

                                                                                                  FsTableField Type

                                                                                                  @@ -93,9 +112,7 @@

                                                                                                  - - Creates an FsTableFiled with given name, index, FsRangeColumn, totalRowLabel, and the totalsRowFunction. - + Creates an FsTableFiled with given name, index, FsRangeColumn, totalRowLabel, and the totalsRowFunction.

                                                                                                  @@ -124,7 +141,7 @@

                                                                                                  - +

                                                                                                  @@ -133,7 +150,7 @@

                                                                                                  -
                                                                                                  +
                                                                                                  Full Usage: FsTableField(name, index, column) @@ -177,66 +194,65 @@

                                                                                                  -
                                                                                                  - - - - - - -

                                                                                                  - - Creates an FsTableField with the given name, index, and FsRangeColumn. - -

                                                                                                  -
                                                                                                  -
                                                                                                  -
                                                                                                  - - name - - : - string -
                                                                                                  -
                                                                                                  -
                                                                                                  - - index - - : - int -
                                                                                                  -
                                                                                                  -
                                                                                                  - - column - - : - FsRangeColumn -
                                                                                                  -
                                                                                                  -
                                                                                                  -
                                                                                                  -
                                                                                                  - - Returns: - - FsTableField -
                                                                                                  -
                                                                                                  -
                                                                                                  +
                                                                                                  + +
                                                                                                  + + + + + +

                                                                                                  + Creates an FsTableField with the given name, index, and FsRangeColumn. +

                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  + + name + + : + string +
                                                                                                  +
                                                                                                  +
                                                                                                  + + index + + : + int +
                                                                                                  +
                                                                                                  +
                                                                                                  + + column + + : + FsRangeColumn +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  + + Returns: + + FsTableField +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  - +

                                                                                                  @@ -245,7 +261,7 @@

                                                                                                  -
                                                                                                  +
                                                                                                  Full Usage: FsTableField(name, index) @@ -281,58 +297,57 @@

                                                                                                  -
                                                                                                  - - - - - - -

                                                                                                  - - Creates an FsTableField with the given name and index. - -

                                                                                                  -
                                                                                                  -
                                                                                                  -
                                                                                                  - - name - - : - string -
                                                                                                  -
                                                                                                  -
                                                                                                  - - index - - : - int -
                                                                                                  -
                                                                                                  -
                                                                                                  -
                                                                                                  -
                                                                                                  - - Returns: - - FsTableField -
                                                                                                  -
                                                                                                  -
                                                                                                  +
                                                                                                  + +
                                                                                                  + + + + + +

                                                                                                  + Creates an FsTableField with the given name and index. +

                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  + + name + + : + string +
                                                                                                  +
                                                                                                  +
                                                                                                  + + index + + : + int +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  + + Returns: + + FsTableField +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  - +

                                                                                                  @@ -341,7 +356,7 @@

                                                                                                  -
                                                                                                  +
                                                                                                  Full Usage: FsTableField(name) @@ -369,50 +384,49 @@

                                                                                                  -
                                                                                                  - - - - - - -

                                                                                                  - - Creates an FsTableField with the given name. - -

                                                                                                  -
                                                                                                  -
                                                                                                  -
                                                                                                  - - name - - : - string -
                                                                                                  -
                                                                                                  -
                                                                                                  -
                                                                                                  -
                                                                                                  - - Returns: - - FsTableField -
                                                                                                  -
                                                                                                  -
                                                                                                  +
                                                                                                  + +
                                                                                                  + + + + + +

                                                                                                  + Creates an FsTableField with the given name. +

                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  + + name + + : + string +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  + + Returns: + + FsTableField +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  - +

                                                                                                  @@ -421,7 +435,7 @@

                                                                                                  -
                                                                                                  +
                                                                                                  Full Usage: FsTableField() @@ -437,40 +451,39 @@

                                                                                                  -
                                                                                                  - - - - - - -

                                                                                                  - - Creates an empty FsTableField. - -

                                                                                                  -
                                                                                                  -
                                                                                                  -
                                                                                                  - - Returns: - - FsTableField -
                                                                                                  -
                                                                                                  -
                                                                                                  +
                                                                                                  + +
                                                                                                  + + + + + +

                                                                                                  + Creates an empty FsTableField. +

                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  + + Returns: + + FsTableField +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  - +

                                                                                                  @@ -479,7 +492,7 @@

                                                                                                  -
                                                                                                  +
                                                                                                  Full Usage: FsTableField(name, index, column, totalsRowLabel, totalsRowFunction) @@ -539,23 +552,6 @@

                                                                                                  -
                                                                                                  - - - - - - -

                                                                                                  - -

                                                                                                  -
                                                                                                  @@ -631,7 +627,7 @@

                                                                                                  - +

                                                                                                  @@ -640,7 +636,7 @@

                                                                                                  -
                                                                                                  +
                                                                                                  Full Usage: this.Column @@ -653,21 +649,16 @@

                                                                                                  - - +

                                                                                                  - - Gets or sets the FsRangeColumn of this FsTableField. - + Gets or sets the FsRangeColumn of this FsTableField.

                                                                                                  @@ -675,7 +666,7 @@

                                                                                                  - +

                                                                                                  @@ -684,7 +675,7 @@

                                                                                                  -
                                                                                                  +
                                                                                                  Full Usage: this.Copy @@ -700,40 +691,39 @@

                                                                                                  -
                                                                                                  - - - - - - -

                                                                                                  - - Creates a deep copy of this FsTableField. - -

                                                                                                  -
                                                                                                  -
                                                                                                  -
                                                                                                  - - Returns: - - FsTableField -
                                                                                                  -
                                                                                                  -
                                                                                                  +
                                                                                                  + +
                                                                                                  + + + + + +

                                                                                                  + Creates a deep copy of this FsTableField. +

                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  + + Returns: + + FsTableField +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  - +

                                                                                                  @@ -742,7 +732,7 @@

                                                                                                  -
                                                                                                  +
                                                                                                  Full Usage: this.DataCells @@ -764,7 +754,7 @@


                                                                                                  Returns: - seq<FsCell> + FsCell seq

                                                                                                  @@ -772,54 +762,55 @@

                                                                                                  -
                                                                                                  - - - - - - -

                                                                                                  - +

                                                                                                  + +
                                                                                                  + + + + + +

                                                                                                  + Gets the collection of data cells for this FsTableField. Excludes the header and footer cells. -

                                                                                                  -
                                                                                                  -
                                                                                                  -
                                                                                                  - - cellsCollection - - : - FsCellsCollection -
                                                                                                  -
                                                                                                  -

                                                                                                  - The FsCellsCollection respective to the FsTableField where the data cells are taken from. -

                                                                                                  -
                                                                                                  -
                                                                                                  -
                                                                                                  -
                                                                                                  - - Returns: - - seq<FsCell> -
                                                                                                  -
                                                                                                  -
                                                                                                  +

                                                                                                  +
                                                                                                  + +
                                                                                                  +
                                                                                                  + + cellsCollection + + : + FsCellsCollection +
                                                                                                  +
                                                                                                  +

                                                                                                  + The FsCellsCollection respective to the FsTableField where the data cells are taken from. +

                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  + + Returns: + + FsCell seq +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  - +

                                                                                                  @@ -828,7 +819,7 @@

                                                                                                  -
                                                                                                  +
                                                                                                  Full Usage: this.HeaderCell @@ -864,70 +855,71 @@

                                                                                                  -
                                                                                                  - - - - - - -

                                                                                                  - +

                                                                                                  + +
                                                                                                  + + + + + +

                                                                                                  + Returns the header cell (taken from a given FsCellsCollection) for the FsTableField if `showHeaderRow` is true. Else fails. -

                                                                                                  -
                                                                                                  -
                                                                                                  -
                                                                                                  - - cellsCollection - - : - FsCellsCollection -
                                                                                                  -
                                                                                                  -
                                                                                                  - - showHeaderRow - - : - bool -
                                                                                                  -
                                                                                                  -
                                                                                                  -
                                                                                                  -
                                                                                                  - - Returns: - - FsCell -
                                                                                                  -
                                                                                                  -
                                                                                                  - - - - - -
                                                                                                  - - Exception - - - if `showHeaderRow` is false. -
                                                                                                  +

                                                                                                  +
                                                                                                  + +
                                                                                                  +
                                                                                                  + + cellsCollection + + : + FsCellsCollection +
                                                                                                  +
                                                                                                  +
                                                                                                  + + showHeaderRow + + : + bool +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  + + Returns: + + FsCell +
                                                                                                  +
                                                                                                  +
                                                                                                  + + + + + +
                                                                                                  + + Exception + + + if `showHeaderRow` is false. +
                                                                                                  +
                                                                                                  - +

                                                                                                  @@ -936,7 +928,7 @@

                                                                                                  -
                                                                                                  +
                                                                                                  Full Usage: this.Index @@ -949,22 +941,17 @@

                                                                                                  - - +

                                                                                                  - - Gets or sets the 0-based index of the FsTableField inside the associated FsTable. + Gets or sets the 0-based index of the FsTableField inside the associated FsTable. Sets the associated FsRangeColumn's column index accordingly. -

                                                                                                  @@ -972,7 +959,7 @@

                                                                                                  - +

                                                                                                  @@ -981,7 +968,7 @@

                                                                                                  -
                                                                                                  +
                                                                                                  Full Usage: this.Name @@ -997,40 +984,39 @@

                                                                                                  -
                                                                                                  - - - - - - -

                                                                                                  - - The name of this FsTableField. - -

                                                                                                  -
                                                                                                  -
                                                                                                  -
                                                                                                  - - Returns: - - string -
                                                                                                  -
                                                                                                  -
                                                                                                  +
                                                                                                  + +
                                                                                                  + + + + + +

                                                                                                  + The name of this FsTableField. +

                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  + + Returns: + + string +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  - +

                                                                                                  @@ -1039,7 +1025,7 @@

                                                                                                  -
                                                                                                  +
                                                                                                  Full Usage: this.SetName @@ -1078,52 +1064,51 @@

                                                                                                  -
                                                                                                  - - - - - - -

                                                                                                  - - Sets the name of the FsTableField. If `showHeaderRow` is true, takes the respective FsCellsCollection and renames the header cell +

                                                                                                  + +
                                                                                                  + + + + + +

                                                                                                  + Sets the name of the FsTableField. If `showHeaderRow` is true, takes the respective FsCellsCollection and renames the header cell according to the name of the FsTableField. - -

                                                                                                  -
                                                                                                  -
                                                                                                  -
                                                                                                  - - name - - : - string -
                                                                                                  -
                                                                                                  -
                                                                                                  - - cellsCollection - - : - FsCellsCollection -
                                                                                                  -
                                                                                                  -
                                                                                                  - - showHeaderRow - - : - bool -
                                                                                                  -
                                                                                                  -
                                                                                                  +

                                                                                                  +
                                                                                                  + +
                                                                                                  +
                                                                                                  + + name + + : + string +
                                                                                                  +
                                                                                                  +
                                                                                                  + + cellsCollection + + : + FsCellsCollection +
                                                                                                  +
                                                                                                  +
                                                                                                  + + showHeaderRow + + : + bool +
                                                                                                  +
                                                                                                  +
                                                                                                  + @@ -1148,7 +1133,7 @@

                                                                                                  - +

                                                                                                  @@ -1157,7 +1142,7 @@

                                                                                                  -
                                                                                                  +
                                                                                                  Full Usage: FsTableField.copy tableField @@ -1185,50 +1170,49 @@

                                                                                                  -
                                                                                                  - - - - - - -

                                                                                                  - - Returns a deep copy of a given FsTableField. - -

                                                                                                  -
                                                                                                  -
                                                                                                  -
                                                                                                  - - tableField - - : - FsTableField -
                                                                                                  -
                                                                                                  -
                                                                                                  -
                                                                                                  -
                                                                                                  - - Returns: - - FsTableField -
                                                                                                  -
                                                                                                  -
                                                                                                  +
                                                                                                  + +
                                                                                                  + + + + + +

                                                                                                  + Returns a deep copy of a given FsTableField. +

                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  + + tableField + + : + FsTableField +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  + + Returns: + + FsTableField +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  - +

                                                                                                  @@ -1237,7 +1221,7 @@

                                                                                                  -
                                                                                                  +
                                                                                                  Full Usage: FsTableField.getDataCells cellsCollection tableField @@ -1269,7 +1253,7 @@


                                                                                                  Returns: - seq<FsCell> + FsCell seq

                                                                                                  @@ -1277,66 +1261,67 @@

                                                                                                  -
                                                                                                  - - - - - - -

                                                                                                  - +

                                                                                                  + +
                                                                                                  + + + + + +

                                                                                                  + Gets the collection of data cells for a given FsTableField. Excludes the header and footer cells. -

                                                                                                  -
                                                                                                  -
                                                                                                  -
                                                                                                  - - cellsCollection - - : - FsCellsCollection -
                                                                                                  -
                                                                                                  -

                                                                                                  - The FsCellsCollection respective to the FsTableField where the data cells are taken from. -

                                                                                                  -
                                                                                                  -
                                                                                                  - - tableField - - : - FsTableField -
                                                                                                  -
                                                                                                  -

                                                                                                  - The FsTableField to get the data cells from. -

                                                                                                  -
                                                                                                  -
                                                                                                  -
                                                                                                  -
                                                                                                  - - Returns: - - seq<FsCell> -
                                                                                                  -
                                                                                                  -
                                                                                                  +

                                                                                                  +
                                                                                                  + +
                                                                                                  +
                                                                                                  + + cellsCollection + + : + FsCellsCollection +
                                                                                                  +
                                                                                                  +

                                                                                                  + The FsCellsCollection respective to the FsTableField where the data cells are taken from. +

                                                                                                  +
                                                                                                  +
                                                                                                  + + tableField + + : + FsTableField +
                                                                                                  +
                                                                                                  +

                                                                                                  + The FsTableField to get the data cells from. +

                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  + + Returns: + + FsCell seq +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  - +

                                                                                                  @@ -1345,7 +1330,7 @@

                                                                                                  -
                                                                                                  +
                                                                                                  Full Usage: FsTableField.getHeaderCell cellsCollection showHeaderRow tableField @@ -1389,78 +1374,79 @@

                                                                                                  -
                                                                                                  - - - - - - -

                                                                                                  - +

                                                                                                  + +
                                                                                                  + + + + + +

                                                                                                  + Returns the header cell (taken from an FsCellsCollection) for a given FsTableField if `showHeaderRow` is true. Else fails. -

                                                                                                  -
                                                                                                  -
                                                                                                  -
                                                                                                  - - cellsCollection - - : - FsCellsCollection -
                                                                                                  -
                                                                                                  -
                                                                                                  - - showHeaderRow - - : - bool -
                                                                                                  -
                                                                                                  -
                                                                                                  - - tableField - - : - FsTableField -
                                                                                                  -
                                                                                                  -
                                                                                                  -
                                                                                                  -
                                                                                                  - - Returns: - - FsCell -
                                                                                                  -
                                                                                                  -
                                                                                                  - - - - - -
                                                                                                  - - Exception - - - if `showHeaderRow` is false. -
                                                                                                  +

                                                                                                  +
                                                                                                  + +
                                                                                                  +
                                                                                                  + + cellsCollection + + : + FsCellsCollection +
                                                                                                  +
                                                                                                  +
                                                                                                  + + showHeaderRow + + : + bool +
                                                                                                  +
                                                                                                  +
                                                                                                  + + tableField + + : + FsTableField +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  + + Returns: + + FsCell +
                                                                                                  +
                                                                                                  +
                                                                                                  + + + + + +
                                                                                                  + + Exception + + + if `showHeaderRow` is false. +
                                                                                                  +
                                                                                                  - +

                                                                                                  @@ -1469,7 +1455,7 @@

                                                                                                  -
                                                                                                  +
                                                                                                  Full Usage: FsTableField.setName name cellsCollection showHeaderRow tableField @@ -1521,88 +1507,92 @@

                                                                                                  -
                                                                                                  - - - - - - -

                                                                                                  - - Sets the name of a given FsTableField. If `showHeaderRow` is true, takes the respective FsCellsCollection and renames the header cell +

                                                                                                  + +
                                                                                                  + + + + + +

                                                                                                  + Sets the name of a given FsTableField. If `showHeaderRow` is true, takes the respective FsCellsCollection and renames the header cell according to the name of the FsTableField. - -

                                                                                                  -
                                                                                                  -
                                                                                                  -
                                                                                                  - - name - - : - string -
                                                                                                  -
                                                                                                  -
                                                                                                  - - cellsCollection - - : - FsCellsCollection -
                                                                                                  -
                                                                                                  -
                                                                                                  - - showHeaderRow - - : - bool -
                                                                                                  -
                                                                                                  -
                                                                                                  - - tableField - - : - FsTableField -
                                                                                                  -
                                                                                                  -
                                                                                                  -
                                                                                                  -
                                                                                                  - - Returns: - - FsTableField -
                                                                                                  -
                                                                                                  -
                                                                                                  +

                                                                                                  +
                                                                                                  + +
                                                                                                  +
                                                                                                  + + name + + : + string +
                                                                                                  +
                                                                                                  +
                                                                                                  + + cellsCollection + + : + FsCellsCollection +
                                                                                                  +
                                                                                                  +
                                                                                                  + + showHeaderRow + + : + bool +
                                                                                                  +
                                                                                                  +
                                                                                                  + + tableField + + : + FsTableField +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  + + Returns: + + FsTableField +
                                                                                                  +
                                                                                                  +
                                                                                                  +
                                                                                                  -

                                                                                                  -
                                                                                                  -

                                                                                                  +

                                                                                                  + + + +
                                                                                                  +
                                                                                                    +

                                                                                                    Type something to start searching.

                                                                                                    +
                                                                                                    +
                                                                                                    + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-fstablerow.html b/reference/fsspreadsheet-fstablerow.html index dbbd687d..78b014a8 100644 --- a/reference/fsspreadsheet-fstablerow.html +++ b/reference/fsspreadsheet-fstablerow.html @@ -1,62 +1,50 @@ - - + - - FsTableRow (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                    -
                                                                                                    - +
                                                                                                    -
                                                                                                    -
                                                                                                    -
                                                                                                    - +
                                                                                                    + + + + + +
                                                                                                    + + +
                                                                                                    +
                                                                                                    +

                                                                                                    FsTableRow Type

                                                                                                    @@ -122,7 +141,7 @@

                                                                                                    - +

                                                                                                    @@ -131,7 +150,7 @@

                                                                                                    -
                                                                                                    +
                                                                                                    Full Usage: FsTableRow(rangeAddress) @@ -159,23 +178,6 @@

                                                                                                    -
                                                                                                    - - - - - - -

                                                                                                    - -

                                                                                                    -
                                                                                                    @@ -203,19 +205,24 @@

                                                                                                    -
                                                                                                    -

                                                                                                    -

                                                                                                    +
                                                                                                    + + + +
                                                                                                    +
                                                                                                      +

                                                                                                      Type something to start searching.

                                                                                                      +
                                                                                                      +
                                                                                                      + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-fsworkbook.html b/reference/fsspreadsheet-fsworkbook.html index 49793467..e0adfa55 100644 --- a/reference/fsspreadsheet-fsworkbook.html +++ b/reference/fsspreadsheet-fsworkbook.html @@ -1,62 +1,50 @@ - - + - - FsWorkbook (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                      -
                                                                                                      - +
                                                                                                      -
                                                                                                      -
                                                                                                      -
                                                                                                      - +
                                                                                                      + + + + + +
                                                                                                      + + +
                                                                                                      +
                                                                                                      +

                                                                                                      FsWorkbook Type

                                                                                                      @@ -91,15 +110,13 @@

                                                                                                      All Interfaces: - IDisposable + IDisposable

                                                                                                      - - Creates an empty FsWorkbook. - + Creates an empty FsWorkbook.

                                                                                                      @@ -128,7 +145,7 @@

                                                                                                      - +

                                                                                                      @@ -137,7 +154,7 @@

                                                                                                      -
                                                                                                      +
                                                                                                      Full Usage: FsWorkbook() @@ -153,23 +170,6 @@

                                                                                                      -
                                                                                                      - - - - - - -

                                                                                                      - -

                                                                                                      -
                                                                                                      @@ -203,7 +203,7 @@

                                                                                                      - +

                                                                                                      @@ -212,7 +212,7 @@

                                                                                                      -
                                                                                                      +
                                                                                                      Full Usage: this.AddWorksheet @@ -235,41 +235,40 @@

                                                                                                      -
                                                                                                      - - - - - - -

                                                                                                      - - Adds a given FsWorksheet to the FsWorkbook. - -

                                                                                                      -
                                                                                                      -
                                                                                                      -
                                                                                                      - - sheet - - : - FsWorksheet -
                                                                                                      -
                                                                                                      -
                                                                                                      +
                                                                                                      + +
                                                                                                      + + + + + +

                                                                                                      + Adds a given FsWorksheet to the FsWorkbook. +

                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      + + sheet + + : + FsWorksheet +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      - +

                                                                                                      @@ -278,7 +277,7 @@

                                                                                                      -
                                                                                                      +
                                                                                                      Full Usage: this.AddWorksheets @@ -291,7 +290,7 @@

                                                                                                      sheets : - seq<FsWorksheet> + FsWorksheet seq
                                                                                                      @@ -301,41 +300,40 @@

                                                                                                      -
                                                                                                      - - - - - - -

                                                                                                      - - Adds a collection of FsWorksheets to the FsWorkbook. - -

                                                                                                      -
                                                                                                      -
                                                                                                      -
                                                                                                      - - sheets - - : - seq<FsWorksheet> -
                                                                                                      -
                                                                                                      -
                                                                                                      +
                                                                                                      + +
                                                                                                      + + + + + +

                                                                                                      + Adds a collection of FsWorksheets to the FsWorkbook. +

                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      + + sheets + + : + FsWorksheet seq +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      - +

                                                                                                      @@ -344,7 +342,7 @@

                                                                                                      -
                                                                                                      +
                                                                                                      Full Usage: this.Copy @@ -360,40 +358,39 @@

                                                                                                      -
                                                                                                      - - - - - - -

                                                                                                      - - Creates a deep copy of this FsWorkbook. - -

                                                                                                      -
                                                                                                      -
                                                                                                      -
                                                                                                      - - Returns: - - FsWorkbook -
                                                                                                      -
                                                                                                      -
                                                                                                      +
                                                                                                      + +
                                                                                                      + + + + + +

                                                                                                      + Creates a deep copy of this FsWorkbook. +

                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      + + Returns: + + FsWorkbook +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      - +

                                                                                                      @@ -402,7 +399,7 @@

                                                                                                      -
                                                                                                      +
                                                                                                      Full Usage: this.GetTables @@ -410,7 +407,7 @@


                                                                                                      Returns: - FsTable[] + FsTable array

                                                                                                      @@ -418,40 +415,39 @@

                                                                                                      -
                                                                                                      - - - - - - -

                                                                                                      - - Returns all FsTables from the FsWorkbook. - -

                                                                                                      -
                                                                                                      -
                                                                                                      -
                                                                                                      - - Returns: - - FsTable[] -
                                                                                                      -
                                                                                                      -
                                                                                                      +
                                                                                                      + +
                                                                                                      + + + + + +

                                                                                                      + Returns all FsTables from the FsWorkbook. +

                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      + + Returns: + + FsTable array +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      - +

                                                                                                      @@ -460,7 +456,7 @@

                                                                                                      -
                                                                                                      +
                                                                                                      Full Usage: this.GetWorksheetAt @@ -488,62 +484,63 @@

                                                                                                      -
                                                                                                      - - - - - - -

                                                                                                      - +

                                                                                                      + +
                                                                                                      + + + + + +

                                                                                                      + Returns the FsWorksheet with the given 1 based index. -

                                                                                                      -
                                                                                                      -
                                                                                                      -
                                                                                                      - - index - - : - int -
                                                                                                      -
                                                                                                      -
                                                                                                      -
                                                                                                      -
                                                                                                      - - Returns: - - FsWorksheet -
                                                                                                      -
                                                                                                      -
                                                                                                      - - - - - -
                                                                                                      - - Exception - - - if FsWorksheet with at position is not present in the FsWorkkbook. -
                                                                                                      +

                                                                                                      +
                                                                                                      + +
                                                                                                      +
                                                                                                      + + index + + : + int +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      + + Returns: + + FsWorksheet +
                                                                                                      +
                                                                                                      +
                                                                                                      + + + + + +
                                                                                                      + + Exception + + + if FsWorksheet with at position is not present in the FsWorkkbook. +
                                                                                                      +
                                                                                                      - +

                                                                                                      @@ -552,7 +549,7 @@

                                                                                                      -
                                                                                                      +
                                                                                                      Full Usage: this.GetWorksheetByName @@ -580,62 +577,63 @@

                                                                                                      -
                                                                                                      - - - - - - -

                                                                                                      - +

                                                                                                      + +
                                                                                                      + + + + + +

                                                                                                      + Returns the FsWorksheet with the given name. -

                                                                                                      -
                                                                                                      -
                                                                                                      -
                                                                                                      - - sheetName - - : - string -
                                                                                                      -
                                                                                                      -
                                                                                                      -
                                                                                                      -
                                                                                                      - - Returns: - - FsWorksheet -
                                                                                                      -
                                                                                                      -
                                                                                                      - - - - - -
                                                                                                      - - Exception - - - if FsWorksheet with given name is not present in the FsWorkkbook. -
                                                                                                      +

                                                                                                      +
                                                                                                      + +
                                                                                                      +
                                                                                                      + + sheetName + + : + string +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      + + Returns: + + FsWorksheet +
                                                                                                      +
                                                                                                      +
                                                                                                      + + + + + +
                                                                                                      + + Exception + + + if FsWorksheet with given name is not present in the FsWorkkbook. +
                                                                                                      +
                                                                                                      - +

                                                                                                      @@ -644,7 +642,7 @@

                                                                                                      -
                                                                                                      +
                                                                                                      Full Usage: this.GetWorksheets @@ -660,40 +658,39 @@

                                                                                                      -
                                                                                                      - - - - - - -

                                                                                                      - - Returns all FsWorksheets. - -

                                                                                                      -
                                                                                                      -
                                                                                                      -
                                                                                                      - - Returns: - - ResizeArray<FsWorksheet> -
                                                                                                      -
                                                                                                      -
                                                                                                      +
                                                                                                      + +
                                                                                                      + + + + + +

                                                                                                      + Returns all FsWorksheets. +

                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      + + Returns: + + ResizeArray<FsWorksheet> +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      - +

                                                                                                      @@ -702,7 +699,7 @@

                                                                                                      -
                                                                                                      +
                                                                                                      Full Usage: this.InitWorksheet @@ -730,50 +727,49 @@

                                                                                                      -
                                                                                                      - - - - - - -

                                                                                                      - - Creates an empty FsWorksheet with given name and adds it to the FsWorkbook. - -

                                                                                                      -
                                                                                                      -
                                                                                                      -
                                                                                                      - - name - - : - string -
                                                                                                      -
                                                                                                      -
                                                                                                      -
                                                                                                      -
                                                                                                      - - Returns: - - FsWorksheet -
                                                                                                      -
                                                                                                      -
                                                                                                      +
                                                                                                      + +
                                                                                                      + + + + + +

                                                                                                      + Creates an empty FsWorksheet with given name and adds it to the FsWorkbook. +

                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      + + name + + : + string +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      + + Returns: + + FsWorksheet +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      - +

                                                                                                      @@ -782,7 +778,7 @@

                                                                                                      -
                                                                                                      +
                                                                                                      Full Usage: this.RemoveWorksheet @@ -805,53 +801,54 @@

                                                                                                      -
                                                                                                      - - - - - - -

                                                                                                      - +

                                                                                                      + +
                                                                                                      + + + + + +

                                                                                                      + Removes an FsWorksheet with given name. -

                                                                                                      -
                                                                                                      -
                                                                                                      -
                                                                                                      - - name - - : - string -
                                                                                                      -
                                                                                                      -
                                                                                                      - - - - - -
                                                                                                      - - Exception - - - if FsWorksheet with given name is not present in the FsWorkkbook. -
                                                                                                      +

                                                                                                      +
                                                                                                      + +
                                                                                                      +
                                                                                                      + + name + + : + string +
                                                                                                      +
                                                                                                      +
                                                                                                      + + + + + +
                                                                                                      + + Exception + + + if FsWorksheet with given name is not present in the FsWorkkbook. +
                                                                                                      +
                                                                                                      - +

                                                                                                      @@ -860,7 +857,7 @@

                                                                                                      -
                                                                                                      +
                                                                                                      Full Usage: this.TryGetWorksheetAt @@ -888,50 +885,49 @@

                                                                                                      -
                                                                                                      - - - - - - -

                                                                                                      - - Returns the FsWorksheet with the given 1 based index if it exists. Else returns None. - -

                                                                                                      -
                                                                                                      -
                                                                                                      -
                                                                                                      - - index - - : - int -
                                                                                                      -
                                                                                                      -
                                                                                                      -
                                                                                                      -
                                                                                                      - - Returns: - - FsWorksheet option -
                                                                                                      -
                                                                                                      -
                                                                                                      +
                                                                                                      + +
                                                                                                      + + + + + +

                                                                                                      + Returns the FsWorksheet with the given 1 based index if it exists. Else returns None. +

                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      + + index + + : + int +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      + + Returns: + + FsWorksheet option +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      - +

                                                                                                      @@ -940,7 +936,7 @@

                                                                                                      -
                                                                                                      +
                                                                                                      Full Usage: this.TryGetWorksheetByName @@ -968,44 +964,43 @@

                                                                                                      -
                                                                                                      - - - - - - -

                                                                                                      - - Returns the FsWorksheet with the given name if it exists in the FsWorkbook. Else returns None. - -

                                                                                                      -
                                                                                                      -
                                                                                                      -
                                                                                                      - - sheetName - - : - string -
                                                                                                      -
                                                                                                      -
                                                                                                      -
                                                                                                      -
                                                                                                      - - Returns: - - FsWorksheet option -
                                                                                                      -
                                                                                                      -
                                                                                                      +
                                                                                                      + +
                                                                                                      + + + + + +

                                                                                                      + Returns the FsWorksheet with the given name if it exists in the FsWorkbook. Else returns None. +

                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      + + sheetName + + : + string +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      + + Returns: + + FsWorksheet option +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      @@ -1030,7 +1025,7 @@

                                                                                                      - +

                                                                                                      @@ -1039,7 +1034,7 @@

                                                                                                      -
                                                                                                      +
                                                                                                      Full Usage: FsWorkbook.addWorksheet sheet workbook @@ -1075,58 +1070,57 @@

                                                                                                      -
                                                                                                      - - - - - - -

                                                                                                      - - Adds an FsWorksheet to an FsWorkbook. - -

                                                                                                      -
                                                                                                      -
                                                                                                      -
                                                                                                      - - sheet - - : - FsWorksheet -
                                                                                                      -
                                                                                                      -
                                                                                                      - - workbook - - : - FsWorkbook -
                                                                                                      -
                                                                                                      -
                                                                                                      -
                                                                                                      -
                                                                                                      - - Returns: - - FsWorkbook -
                                                                                                      -
                                                                                                      -
                                                                                                      +
                                                                                                      + +
                                                                                                      + + + + + +

                                                                                                      + Adds an FsWorksheet to an FsWorkbook. +

                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      + + sheet + + : + FsWorksheet +
                                                                                                      +
                                                                                                      +
                                                                                                      + + workbook + + : + FsWorkbook +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      + + Returns: + + FsWorkbook +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      - +

                                                                                                      @@ -1135,7 +1129,7 @@

                                                                                                      -
                                                                                                      +
                                                                                                      Full Usage: FsWorkbook.addWorksheets sheets workbook @@ -1148,7 +1142,7 @@

                                                                                                      sheets : - seq<FsWorksheet> + FsWorksheet seq
                                                                                                      @@ -1171,58 +1165,57 @@

                                                                                                      -
                                                                                                      - - - - - - -

                                                                                                      - - Adds a collection of FsWorksheets to an FsWorkbook. - -

                                                                                                      -
                                                                                                      -
                                                                                                      -
                                                                                                      - - sheets - - : - seq<FsWorksheet> -
                                                                                                      -
                                                                                                      -
                                                                                                      - - workbook - - : - FsWorkbook -
                                                                                                      -
                                                                                                      -
                                                                                                      -
                                                                                                      -
                                                                                                      - - Returns: - - FsWorkbook -
                                                                                                      -
                                                                                                      -
                                                                                                      +
                                                                                                      + +
                                                                                                      + + + + + +

                                                                                                      + Adds a collection of FsWorksheets to an FsWorkbook. +

                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      + + sheets + + : + FsWorksheet seq +
                                                                                                      +
                                                                                                      +
                                                                                                      + + workbook + + : + FsWorkbook +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      + + Returns: + + FsWorkbook +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      - +

                                                                                                      @@ -1231,7 +1224,7 @@

                                                                                                      -
                                                                                                      +
                                                                                                      Full Usage: FsWorkbook.copy workbook @@ -1259,50 +1252,49 @@

                                                                                                      -
                                                                                                      - - - - - - -

                                                                                                      - - Returns a deep copy of a given FsWorkbook. - -

                                                                                                      -
                                                                                                      -
                                                                                                      -
                                                                                                      - - workbook - - : - FsWorkbook -
                                                                                                      -
                                                                                                      -
                                                                                                      -
                                                                                                      -
                                                                                                      - - Returns: - - FsWorkbook -
                                                                                                      -
                                                                                                      -
                                                                                                      +
                                                                                                      + +
                                                                                                      + + + + + +

                                                                                                      + Returns a deep copy of a given FsWorkbook. +

                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      + + workbook + + : + FsWorkbook +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      + + Returns: + + FsWorkbook +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      - +

                                                                                                      @@ -1311,7 +1303,7 @@

                                                                                                      -
                                                                                                      +
                                                                                                      Full Usage: FsWorkbook.getTables workbook @@ -1331,7 +1323,7 @@


                                                                                                      Returns: - FsTable[] + FsTable array

                                                                                                      @@ -1339,50 +1331,49 @@

                                                                                                      -
                                                                                                      - - - - - - -

                                                                                                      - - Returns all FsTables from an FsWorkbook. - -

                                                                                                      -
                                                                                                      -
                                                                                                      -
                                                                                                      - - workbook - - : - FsWorkbook -
                                                                                                      -
                                                                                                      -
                                                                                                      -
                                                                                                      -
                                                                                                      - - Returns: - - FsTable[] -
                                                                                                      -
                                                                                                      -
                                                                                                      +
                                                                                                      + +
                                                                                                      + + + + + +

                                                                                                      + Returns all FsTables from an FsWorkbook. +

                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      + + workbook + + : + FsWorkbook +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      + + Returns: + + FsTable array +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      - +

                                                                                                      @@ -1391,7 +1382,7 @@

                                                                                                      -
                                                                                                      +
                                                                                                      Full Usage: FsWorkbook.getWorksheetAt index workbook @@ -1427,70 +1418,71 @@

                                                                                                      -
                                                                                                      - - - - - - -

                                                                                                      - +

                                                                                                      + +
                                                                                                      + + + + + +

                                                                                                      + Returns the FsWorksheet with the given the given 1 based indexk. -

                                                                                                      -
                                                                                                      -
                                                                                                      -
                                                                                                      - - index - - : - int -
                                                                                                      -
                                                                                                      -
                                                                                                      - - workbook - - : - FsWorkbook -
                                                                                                      -
                                                                                                      -
                                                                                                      -
                                                                                                      -
                                                                                                      - - Returns: - - FsWorksheet -
                                                                                                      -
                                                                                                      -
                                                                                                      - - - - - -
                                                                                                      - - Exception - - - if FsWorksheet with at position is not present in the FsWorkkbook. -
                                                                                                      +

                                                                                                      +
                                                                                                      + +
                                                                                                      +
                                                                                                      + + index + + : + int +
                                                                                                      +
                                                                                                      +
                                                                                                      + + workbook + + : + FsWorkbook +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      + + Returns: + + FsWorksheet +
                                                                                                      +
                                                                                                      +
                                                                                                      + + + + + +
                                                                                                      + + Exception + + + if FsWorksheet with at position is not present in the FsWorkkbook. +
                                                                                                      +
                                                                                                      - +

                                                                                                      @@ -1499,7 +1491,7 @@

                                                                                                      -
                                                                                                      +
                                                                                                      Full Usage: FsWorkbook.getWorksheetByName sheetName workbook @@ -1535,70 +1527,71 @@

                                                                                                      -
                                                                                                      - - - - - - -

                                                                                                      - +

                                                                                                      + +
                                                                                                      + + + + + +

                                                                                                      + Returns the FsWorksheet with the given name from an FsWorkbook. -

                                                                                                      -
                                                                                                      -
                                                                                                      -
                                                                                                      - - sheetName - - : - string -
                                                                                                      -
                                                                                                      -
                                                                                                      - - workbook - - : - FsWorkbook -
                                                                                                      -
                                                                                                      -
                                                                                                      -
                                                                                                      -
                                                                                                      - - Returns: - - FsWorksheet -
                                                                                                      -
                                                                                                      -
                                                                                                      - - - - - -
                                                                                                      - - Exception - - - if FsWorksheet with given name is not present in the FsWorkkbook. -
                                                                                                      +

                                                                                                      +
                                                                                                      + +
                                                                                                      +
                                                                                                      + + sheetName + + : + string +
                                                                                                      +
                                                                                                      +
                                                                                                      + + workbook + + : + FsWorkbook +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      + + Returns: + + FsWorksheet +
                                                                                                      +
                                                                                                      +
                                                                                                      + + + + + +
                                                                                                      + + Exception + + + if FsWorksheet with given name is not present in the FsWorkkbook. +
                                                                                                      +
                                                                                                      - +

                                                                                                      @@ -1607,7 +1600,7 @@

                                                                                                      -
                                                                                                      +
                                                                                                      Full Usage: FsWorkbook.getWorksheets workbook @@ -1635,50 +1628,49 @@

                                                                                                      -
                                                                                                      - - - - - - -

                                                                                                      - - Returns all FsWorksheets. - -

                                                                                                      -
                                                                                                      -
                                                                                                      -
                                                                                                      - - workbook - - : - FsWorkbook -
                                                                                                      -
                                                                                                      -
                                                                                                      -
                                                                                                      -
                                                                                                      - - Returns: - - ResizeArray<FsWorksheet> -
                                                                                                      -
                                                                                                      -
                                                                                                      +
                                                                                                      + +
                                                                                                      + + + + + +

                                                                                                      + Returns all FsWorksheets. +

                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      + + workbook + + : + FsWorkbook +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      + + Returns: + + ResizeArray<FsWorksheet> +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      - +

                                                                                                      @@ -1687,7 +1679,7 @@

                                                                                                      -
                                                                                                      +
                                                                                                      Full Usage: FsWorkbook.initWorksheet name workbook @@ -1723,58 +1715,57 @@

                                                                                                      -
                                                                                                      - - - - - - -

                                                                                                      - - Creates an empty FsWorksheet with given name and adds it to the FsWorkbook. - -

                                                                                                      -
                                                                                                      -
                                                                                                      -
                                                                                                      - - name - - : - string -
                                                                                                      -
                                                                                                      -
                                                                                                      - - workbook - - : - FsWorkbook -
                                                                                                      -
                                                                                                      -
                                                                                                      -
                                                                                                      -
                                                                                                      - - Returns: - - FsWorksheet -
                                                                                                      -
                                                                                                      -
                                                                                                      +
                                                                                                      + +
                                                                                                      + + + + + +

                                                                                                      + Creates an empty FsWorksheet with given name and adds it to the FsWorkbook. +

                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      + + name + + : + string +
                                                                                                      +
                                                                                                      +
                                                                                                      + + workbook + + : + FsWorkbook +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      + + Returns: + + FsWorksheet +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      - +

                                                                                                      @@ -1783,7 +1774,7 @@

                                                                                                      -
                                                                                                      +
                                                                                                      Full Usage: FsWorkbook.removeWorksheet name workbook @@ -1819,58 +1810,57 @@

                                                                                                      -
                                                                                                      - - - - - - -

                                                                                                      - - Removes an FsWorksheet with given name from an FsWorkbook. - -

                                                                                                      -
                                                                                                      -
                                                                                                      -
                                                                                                      - - name - - : - string -
                                                                                                      -
                                                                                                      -
                                                                                                      - - workbook - - : - FsWorkbook -
                                                                                                      -
                                                                                                      -
                                                                                                      -
                                                                                                      -
                                                                                                      - - Returns: - - FsWorkbook -
                                                                                                      -
                                                                                                      -
                                                                                                      +
                                                                                                      + +
                                                                                                      + + + + + +

                                                                                                      + Removes an FsWorksheet with given name from an FsWorkbook. +

                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      + + name + + : + string +
                                                                                                      +
                                                                                                      +
                                                                                                      + + workbook + + : + FsWorkbook +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      + + Returns: + + FsWorkbook +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      - +

                                                                                                      @@ -1879,7 +1869,7 @@

                                                                                                      -
                                                                                                      +
                                                                                                      Full Usage: FsWorkbook.tryGetWorksheetAt index workbook @@ -1915,58 +1905,57 @@

                                                                                                      -
                                                                                                      - - - - - - -

                                                                                                      - - Returns the FsWorksheet with the given 1 based index if it exists in a given FsWorkbook. Else returns None. - -

                                                                                                      -
                                                                                                      -
                                                                                                      -
                                                                                                      - - index - - : - int -
                                                                                                      -
                                                                                                      -
                                                                                                      - - workbook - - : - FsWorkbook -
                                                                                                      -
                                                                                                      -
                                                                                                      -
                                                                                                      -
                                                                                                      - - Returns: - - FsWorksheet option -
                                                                                                      -
                                                                                                      -
                                                                                                      +
                                                                                                      + +
                                                                                                      + + + + + +

                                                                                                      + Returns the FsWorksheet with the given 1 based index if it exists in a given FsWorkbook. Else returns None. +

                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      + + index + + : + int +
                                                                                                      +
                                                                                                      +
                                                                                                      + + workbook + + : + FsWorkbook +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      + + Returns: + + FsWorksheet option +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      - +

                                                                                                      @@ -1975,7 +1964,7 @@

                                                                                                      -
                                                                                                      +
                                                                                                      Full Usage: FsWorkbook.tryGetWorksheetByName sheetName workbook @@ -2011,71 +2000,75 @@

                                                                                                      -
                                                                                                      - - - - - - -

                                                                                                      - - Returns the FsWorksheet with the given name if it exists in a given FsWorkbook. Else returns None. - -

                                                                                                      -
                                                                                                      -
                                                                                                      -
                                                                                                      - - sheetName - - : - string -
                                                                                                      -
                                                                                                      -
                                                                                                      - - workbook - - : - FsWorkbook -
                                                                                                      -
                                                                                                      -
                                                                                                      -
                                                                                                      -
                                                                                                      - - Returns: - - FsWorksheet option -
                                                                                                      -
                                                                                                      -
                                                                                                      +
                                                                                                      + +
                                                                                                      + + + + + +

                                                                                                      + Returns the FsWorksheet with the given name if it exists in a given FsWorkbook. Else returns None. +

                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      + + sheetName + + : + string +
                                                                                                      +
                                                                                                      +
                                                                                                      + + workbook + + : + FsWorkbook +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      + + Returns: + + FsWorksheet option +
                                                                                                      +
                                                                                                      +
                                                                                                      +
                                                                                                      -

                                                                                                      -
                                                                                                      -

                                                                                                      +

                                                                                                      + + + +
                                                                                                      +
                                                                                                        +

                                                                                                        Type something to start searching.

                                                                                                        +
                                                                                                        +
                                                                                                        + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-fsworksheet.html b/reference/fsspreadsheet-fsworksheet.html index 408ec630..6825e1a5 100644 --- a/reference/fsspreadsheet-fsworksheet.html +++ b/reference/fsspreadsheet-fsworksheet.html @@ -1,62 +1,50 @@ - - + - - FsWorksheet (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                        -
                                                                                                        - +
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - +
                                                                                                        + + + + + +
                                                                                                        + + +
                                                                                                        +
                                                                                                        +

                                                                                                        FsWorksheet Type

                                                                                                        @@ -93,9 +112,7 @@

                                                                                                        - - Creates an FsWorksheet with the given name, FsRows, FsTables, and FsCellsCollection. - + Creates an FsWorksheet with the given name, FsRows, FsTables, and FsCellsCollection.

                                                                                                        @@ -124,7 +141,7 @@

                                                                                                        - +

                                                                                                        @@ -133,7 +150,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: FsWorksheet(name, ?fsRows, ?fsTables, ?fsCellsCollection) @@ -185,23 +202,6 @@

                                                                                                        -
                                                                                                        - - - - - - -

                                                                                                        - -

                                                                                                        -
                                                                                                        @@ -269,7 +269,7 @@

                                                                                                        - +

                                                                                                        @@ -278,7 +278,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: this.AddCell @@ -306,50 +306,49 @@

                                                                                                        -
                                                                                                        - - - - - - -

                                                                                                        - - Adds a FsCell to the FsWorksheet. !Exception if cell address already exists! - -

                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - cell - - : - FsCell -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - Returns: - - FsWorksheet -
                                                                                                        -
                                                                                                        -
                                                                                                        +
                                                                                                        + +
                                                                                                        + + + + + +

                                                                                                        + Adds a FsCell to the FsWorksheet. !Exception if cell address already exists! +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + cell + + : + FsCell +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + Returns: + + FsWorksheet +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        - +

                                                                                                        @@ -358,7 +357,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: this.AddCells @@ -371,7 +370,7 @@

                                                                                                        cells : - seq<FsCell> + FsCell seq
                                                                                                        @@ -386,50 +385,49 @@

                                                                                                        -
                                                                                                        - - - - - - -

                                                                                                        - - Adds a sequence of FsCells to the FsWorksheet. !Exception if cell address already exists! - -

                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - cells - - : - seq<FsCell> -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - Returns: - - FsWorksheet -
                                                                                                        -
                                                                                                        -
                                                                                                        +
                                                                                                        + +
                                                                                                        + + + + + +

                                                                                                        + Adds a sequence of FsCells to the FsWorksheet. !Exception if cell address already exists! +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + cells + + : + FsCell seq +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + Returns: + + FsWorksheet +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        - +

                                                                                                        @@ -438,7 +436,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: this.AddTable @@ -466,50 +464,49 @@

                                                                                                        -
                                                                                                        - - - - - - -

                                                                                                        - - Adds an FsTable to the FsWorksheet if an FsTable with the same name is not already attached. - -

                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - table - - : - FsTable -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - Returns: - - FsWorksheet -
                                                                                                        -
                                                                                                        -
                                                                                                        +
                                                                                                        + +
                                                                                                        + + + + + +

                                                                                                        + Adds an FsTable to the FsWorksheet if an FsTable with the same name is not already attached. +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + table + + : + FsTable +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + Returns: + + FsWorksheet +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        - +

                                                                                                        @@ -518,7 +515,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: this.AddTables @@ -546,50 +543,49 @@

                                                                                                        -
                                                                                                        - - - - - - -

                                                                                                        - - Adds a list of FsTables to the FsWorksheet. All FsTables with a name already present in the FsWorksheet are not attached. - -

                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - tables - - : - 'a list -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - Returns: - - FsWorksheet -
                                                                                                        -
                                                                                                        -
                                                                                                        +
                                                                                                        + +
                                                                                                        + + + + + +

                                                                                                        + Adds a list of FsTables to the FsWorksheet. All FsTables with a name already present in the FsWorksheet are not attached. +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + tables + + : + 'a list +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + Returns: + + FsWorksheet +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        - +

                                                                                                        @@ -598,7 +594,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: this.CellCollection @@ -614,40 +610,39 @@

                                                                                                        -
                                                                                                        - - - - - - -

                                                                                                        - - The FsCellCollection of the FsWorksheet. - -

                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - Returns: - - FsCellsCollection -
                                                                                                        -
                                                                                                        -
                                                                                                        +
                                                                                                        + +
                                                                                                        + + + + + +

                                                                                                        + The FsCellCollection of the FsWorksheet. +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + Returns: + + FsCellsCollection +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        - +

                                                                                                        @@ -656,7 +651,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: this.Column @@ -684,50 +679,49 @@

                                                                                                        -
                                                                                                        - - - - - - -

                                                                                                        - - Returns the FsColumn at the given index. If it does not exist, it is created and appended first. - -

                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - columnIndex - - : - int32 -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - Returns: - - FsColumn -
                                                                                                        -
                                                                                                        -
                                                                                                        +
                                                                                                        + +
                                                                                                        + + + + + +

                                                                                                        + Returns the FsColumn at the given index. If it does not exist, it is created and appended first. +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + columnIndex + + : + int32 +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + Returns: + + FsColumn +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        - +

                                                                                                        @@ -736,7 +730,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: this.ColumnWithRange @@ -759,41 +753,40 @@

                                                                                                        -
                                                                                                        - - - - - - -

                                                                                                        - - Returns the FsColumn at the given FsRangeAddress. If it does not exist, it is created and appended first. - -

                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - rangeAddress - - : - FsRangeAddress -
                                                                                                        -
                                                                                                        -
                                                                                                        +
                                                                                                        + +
                                                                                                        + + + + + +

                                                                                                        + Returns the FsColumn at the given FsRangeAddress. If it does not exist, it is created and appended first. +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + rangeAddress + + : + FsRangeAddress +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        - +

                                                                                                        @@ -802,7 +795,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: this.Columns @@ -810,7 +803,7 @@


                                                                                                        Returns: - seq<FsColumn> + FsColumn seq

                                                                                                        @@ -818,40 +811,39 @@

                                                                                                        -
                                                                                                        - - - - - - -

                                                                                                        - - The FsColumns of the FsWorksheet. - -

                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - Returns: - - seq<FsColumn> -
                                                                                                        -
                                                                                                        -
                                                                                                        +
                                                                                                        + +
                                                                                                        + + + + + +

                                                                                                        + The FsColumns of the FsWorksheet. +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + Returns: + + FsColumn seq +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        - +

                                                                                                        @@ -860,7 +852,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: this.ContainsRowAt @@ -888,50 +880,49 @@

                                                                                                        -
                                                                                                        - - - - - - -

                                                                                                        - - Returns true if the FsWorksheet contains an FsRow with the given rowIndex. - -

                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - rowIndex - - : - int -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - Returns: - - bool -
                                                                                                        -
                                                                                                        -
                                                                                                        +
                                                                                                        + +
                                                                                                        + + + + + +

                                                                                                        + Returns true if the FsWorksheet contains an FsRow with the given rowIndex. +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + rowIndex + + : + int +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + Returns: + + bool +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        - +

                                                                                                        @@ -940,7 +931,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: this.Copy @@ -956,40 +947,39 @@

                                                                                                        -
                                                                                                        - - - - - - -

                                                                                                        - - Returns a copy of the FsWorksheet. - -

                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - Returns: - - FsWorksheet -
                                                                                                        -
                                                                                                        -
                                                                                                        +
                                                                                                        + +
                                                                                                        + + + + + +

                                                                                                        + Returns a copy of the FsWorksheet. +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + Returns: + + FsWorksheet +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        - +

                                                                                                        @@ -998,7 +988,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: this.GetCellAt @@ -1034,58 +1024,57 @@

                                                                                                        -
                                                                                                        - - - - - - -

                                                                                                        - - Returns the FsCell at the given row- and column index. Index is 1 based! - -

                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - rowIndex - - : - int32 -
                                                                                                        -
                                                                                                        -
                                                                                                        - - colIndex - - : - int32 -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - Returns: - - FsCell -
                                                                                                        -
                                                                                                        -
                                                                                                        +
                                                                                                        + +
                                                                                                        + + + + + +

                                                                                                        + Returns the FsCell at the given row- and column index. Index is 1 based! +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + rowIndex + + : + int32 +
                                                                                                        +
                                                                                                        +
                                                                                                        + + colIndex + + : + int32 +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + Returns: + + FsCell +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        - +

                                                                                                        @@ -1094,7 +1083,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: this.GetMaxRowIndex @@ -1110,40 +1099,39 @@

                                                                                                        -
                                                                                                        - - - - - - -

                                                                                                        - - Returns the highest index of any FsRow. - -

                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - Returns: - - FsRow -
                                                                                                        -
                                                                                                        -
                                                                                                        +
                                                                                                        + +
                                                                                                        + + + + + +

                                                                                                        + Returns the highest index of any FsRow. +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + Returns: + + FsRow +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        - +

                                                                                                        @@ -1152,7 +1140,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: this.GetRowValuesAt @@ -1172,7 +1160,7 @@


                                                                                                        Returns: - seq<obj> + obj seq

                                                                                                        @@ -1180,50 +1168,49 @@

                                                                                                        -
                                                                                                        - - - - - - -

                                                                                                        - - Gets the string values of the FsRow at the given 1-based rowIndex. - -

                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - rowIndex - - : - int -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - Returns: - - seq<obj> -
                                                                                                        -
                                                                                                        -
                                                                                                        +
                                                                                                        + +
                                                                                                        + + + + + +

                                                                                                        + Gets the string values of the FsRow at the given 1-based rowIndex. +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + rowIndex + + : + int +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + Returns: + + obj seq +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        - +

                                                                                                        @@ -1232,7 +1219,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: this.InsertBefore @@ -1268,58 +1255,57 @@

                                                                                                        -
                                                                                                        - - - - - - -

                                                                                                        - - Inserts an FsRow into the FsWorksheet before a reference FsRow. - -

                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - row - - : - FsRow -
                                                                                                        -
                                                                                                        -
                                                                                                        - - refRow - - : - FsRow -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - Returns: - - FsWorksheet -
                                                                                                        -
                                                                                                        -
                                                                                                        +
                                                                                                        + +
                                                                                                        + + + + + +

                                                                                                        + Inserts an FsRow into the FsWorksheet before a reference FsRow. +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + row + + : + FsRow +
                                                                                                        +
                                                                                                        +
                                                                                                        + + refRow + + : + FsRow +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + Returns: + + FsWorksheet +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        - +

                                                                                                        @@ -1328,7 +1314,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: this.InsertValueAt @@ -1367,59 +1353,58 @@

                                                                                                        -
                                                                                                        - - - - - - -

                                                                                                        - - Adds a value at the given row- and columnIndex to the FsWorksheet. +

                                                                                                        + +
                                                                                                        + + + + + +

                                                                                                        + Adds a value at the given row- and columnIndex to the FsWorksheet. If a cell exists at the given postion, it is shoved to the right. - -

                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - value - - : - obj -
                                                                                                        -
                                                                                                        -
                                                                                                        - - rowIndex - - : - int -
                                                                                                        -
                                                                                                        -
                                                                                                        - - colIndex - - : - int -
                                                                                                        -
                                                                                                        -
                                                                                                        +

                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + value + + : + obj +
                                                                                                        +
                                                                                                        +
                                                                                                        + + rowIndex + + : + int +
                                                                                                        +
                                                                                                        +
                                                                                                        + + colIndex + + : + int +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        - +

                                                                                                        @@ -1428,7 +1413,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: this.InsertValueAt @@ -1441,7 +1426,7 @@

                                                                                                        value : - IConvertible + IConvertible
                                                                                                        @@ -1467,59 +1452,58 @@

                                                                                                        -
                                                                                                        - - - - - - -

                                                                                                        - - Adds a value at the given row- and columnIndex to the FsWorksheet. +

                                                                                                        + +
                                                                                                        + + + + + +

                                                                                                        + Adds a value at the given row- and columnIndex to the FsWorksheet. If a cell exists at the given postion, it is shoved to the right. - -

                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - value - - : - IConvertible -
                                                                                                        -
                                                                                                        -
                                                                                                        - - rowIndex - - : - int -
                                                                                                        -
                                                                                                        -
                                                                                                        - - colIndex - - : - int -
                                                                                                        -
                                                                                                        -
                                                                                                        +

                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + value + + : + IConvertible +
                                                                                                        +
                                                                                                        +
                                                                                                        + + rowIndex + + : + int +
                                                                                                        +
                                                                                                        +
                                                                                                        + + colIndex + + : + int +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        - +

                                                                                                        @@ -1528,7 +1512,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: this.MapRowsInPlace @@ -1556,50 +1540,49 @@

                                                                                                        -
                                                                                                        - - - - - - -

                                                                                                        - - Applies function f to all FsRows and returns the modified FsWorksheet. - -

                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - f - - : - FsRow -> FsRow -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - Returns: - - FsWorksheet -
                                                                                                        -
                                                                                                        -
                                                                                                        +
                                                                                                        + +
                                                                                                        + + + + + +

                                                                                                        + Applies function f to all FsRows and returns the modified FsWorksheet. +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + f + + : + FsRow -> FsRow +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + Returns: + + FsWorksheet +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        - +

                                                                                                        @@ -1608,7 +1591,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: this.MaxColumnIndex @@ -1624,23 +1607,6 @@

                                                                                                        -
                                                                                                        - - - - - - -

                                                                                                        - -

                                                                                                        -
                                                                                                        @@ -1655,7 +1621,7 @@

                                                                                                        - +

                                                                                                        @@ -1664,7 +1630,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: this.MaxRowIndex @@ -1680,23 +1646,6 @@

                                                                                                        -
                                                                                                        - - - - - - -

                                                                                                        - -

                                                                                                        -
                                                                                                        @@ -1711,7 +1660,7 @@

                                                                                                        - +

                                                                                                        @@ -1720,7 +1669,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: this.Name @@ -1733,21 +1682,16 @@

                                                                                                        - - +

                                                                                                        - - The name of the FsWorksheet. - + The name of the FsWorksheet.

                                                                                                        @@ -1755,7 +1699,7 @@

                                                                                                        - +

                                                                                                        @@ -1764,7 +1708,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: this.RemoveCellAt @@ -1800,58 +1744,57 @@

                                                                                                        -
                                                                                                        - - - - - - -

                                                                                                        - - Removes the value at the given row- and columnIndex from the FsWorksheet. - -

                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - rowIndex - - : - int -
                                                                                                        -
                                                                                                        -
                                                                                                        - - colIndex - - : - int -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - Returns: - - FsWorksheet -
                                                                                                        -
                                                                                                        -
                                                                                                        +
                                                                                                        + +
                                                                                                        + + + + + +

                                                                                                        + Removes the value at the given row- and columnIndex from the FsWorksheet. +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + rowIndex + + : + int +
                                                                                                        +
                                                                                                        +
                                                                                                        + + colIndex + + : + int +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + Returns: + + FsWorksheet +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        - +

                                                                                                        @@ -1860,7 +1803,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: this.RemoveRowAt @@ -1883,41 +1826,40 @@

                                                                                                        -
                                                                                                        - - - - - - -

                                                                                                        - - Removes the FsRow at the given rowIndex. - -

                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - rowIndex - - : - int -
                                                                                                        -
                                                                                                        -
                                                                                                        +
                                                                                                        + +
                                                                                                        + + + + + +

                                                                                                        + Removes the FsRow at the given rowIndex. +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + rowIndex + + : + int +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        - +

                                                                                                        @@ -1926,7 +1868,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: this.RemoveValueAt @@ -1957,71 +1899,72 @@

                                                                                                        -
                                                                                                        - - - - - - -

                                                                                                        - +

                                                                                                        + +
                                                                                                        + + + + + +

                                                                                                        + Removes the value of an FsCell at given row- and columnIndex from the FsCollection. -

                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - rowIndex - - : - int -
                                                                                                        -
                                                                                                        -
                                                                                                        - - colIndex - - : - int -
                                                                                                        -
                                                                                                        -
                                                                                                        - - - - - - - - - -
                                                                                                        - - ArgumentNullException - - - if rowIndex or columnIndex is null. -
                                                                                                        - - KeyNotFoundException - - - if row or column at the given index does not exist. -
                                                                                                        +

                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + rowIndex + + : + int +
                                                                                                        +
                                                                                                        +
                                                                                                        + + colIndex + + : + int +
                                                                                                        +
                                                                                                        +
                                                                                                        + + + + + + + + + +
                                                                                                        + + ArgumentNullException + + + if rowIndex or columnIndex is null. +
                                                                                                        + + KeyNotFoundException + + + if row or column at the given index does not exist. +
                                                                                                        +
                                                                                                        - +

                                                                                                        @@ -2030,7 +1973,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: this.RescanRows @@ -2043,21 +1986,16 @@

                                                                                                        - - +

                                                                                                        - - Checks the cell collection and recreate the whole set of rows, so that all cells are placed in a row - + Checks the cell collection and recreate the whole set of rows, so that all cells are placed in a row

                                                                                                        @@ -2065,7 +2003,7 @@

                                                                                                        - +

                                                                                                        @@ -2074,7 +2012,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: this.Row @@ -2110,58 +2048,57 @@

                                                                                                        -
                                                                                                        - - - - - - -

                                                                                                        - - Returns the FsRow at the given index. If it does not exist, it is created and appended first. - -

                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - rowIndex - - : - int32 -
                                                                                                        -
                                                                                                        -
                                                                                                        - - ?SkipSearch - - : - bool -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - Returns: - - FsRow -
                                                                                                        -
                                                                                                        -
                                                                                                        +
                                                                                                        + +
                                                                                                        + + + + + +

                                                                                                        + Returns the FsRow at the given index. If it does not exist, it is created and appended first. +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + rowIndex + + : + int32 +
                                                                                                        +
                                                                                                        +
                                                                                                        + + ?SkipSearch + + : + bool +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + Returns: + + FsRow +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        - +

                                                                                                        @@ -2170,7 +2107,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: this.RowWithRange @@ -2210,66 +2147,67 @@

                                                                                                        -
                                                                                                        - - - - - - -

                                                                                                        - +

                                                                                                        + +
                                                                                                        + + + + + +

                                                                                                        + Returns the FsRow at the given FsRangeAddress. If it does not exist, it is created and appended first. -

                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - rangeAddress - - : - FsRangeAddress -
                                                                                                        -
                                                                                                        -

                                                                                                        - The range address of the FsRow. -

                                                                                                        -
                                                                                                        -
                                                                                                        - - ?SkipSearch - - : - bool -
                                                                                                        -
                                                                                                        -

                                                                                                        - If true, the FsRow is created and appended without checking if it already exists. -

                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - Returns: - - FsRow -
                                                                                                        -
                                                                                                        -
                                                                                                        +

                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + rangeAddress + + : + FsRangeAddress +
                                                                                                        +
                                                                                                        +

                                                                                                        + The range address of the FsRow. +

                                                                                                        +
                                                                                                        +
                                                                                                        + + ?SkipSearch + + : + bool +
                                                                                                        +
                                                                                                        +

                                                                                                        + If true, the FsRow is created and appended without checking if it already exists. +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + Returns: + + FsRow +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        - +

                                                                                                        @@ -2278,7 +2216,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: this.Rows @@ -2294,40 +2232,39 @@

                                                                                                        -
                                                                                                        - - - - - - -

                                                                                                        - - The FsRows of the FsWorksheet. - -

                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - Returns: - - ResizeArray<FsRow> -
                                                                                                        -
                                                                                                        -
                                                                                                        +
                                                                                                        + +
                                                                                                        + + + + + +

                                                                                                        + The FsRows of the FsWorksheet. +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + Returns: + + ResizeArray<FsRow> +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        - +

                                                                                                        @@ -2336,7 +2273,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: this.SetValueAt @@ -2380,68 +2317,67 @@

                                                                                                        -
                                                                                                        - - - - - - -

                                                                                                        - - Adds a value at the given row- and columnIndex. +

                                                                                                        + +
                                                                                                        + + + + + +

                                                                                                        + Adds a value at the given row- and columnIndex. If an FsCell exists at the given position, overwrites it. - -

                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - value - - : - 'a -
                                                                                                        -
                                                                                                        -
                                                                                                        - - rowIndex - - : - int32 -
                                                                                                        -
                                                                                                        -
                                                                                                        - - colIndex - - : - int32 -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - Returns: - - FsWorksheet -
                                                                                                        -
                                                                                                        -
                                                                                                        +

                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + value + + : + 'a +
                                                                                                        +
                                                                                                        +
                                                                                                        + + rowIndex + + : + int32 +
                                                                                                        +
                                                                                                        +
                                                                                                        + + colIndex + + : + int32 +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + Returns: + + FsWorksheet +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        - +

                                                                                                        @@ -2450,7 +2386,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: this.SortRows @@ -2463,21 +2399,16 @@

                                                                                                        - - +

                                                                                                        - - Sorts the FsRows by their rowIndex. - + Sorts the FsRows by their rowIndex.

                                                                                                        @@ -2485,7 +2416,7 @@

                                                                                                        - +

                                                                                                        @@ -2494,7 +2425,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: this.Table @@ -2538,66 +2469,65 @@

                                                                                                        -
                                                                                                        - - - - - - -

                                                                                                        - - Returns the FsTable with the given tableName, rangeAddress, and showHeaderRow parameters. If it does not exist yet, it gets created and appended first. - -

                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - tableName - - : - string -
                                                                                                        -
                                                                                                        -
                                                                                                        - - rangeAddress - - : - FsRangeAddress -
                                                                                                        -
                                                                                                        -
                                                                                                        - - ?showHeaderRow - - : - bool -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - Returns: - - FsTable -
                                                                                                        -
                                                                                                        -
                                                                                                        +
                                                                                                        + +
                                                                                                        + + + + + +

                                                                                                        + Returns the FsTable with the given tableName, rangeAddress, and showHeaderRow parameters. If it does not exist yet, it gets created and appended first. +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + tableName + + : + string +
                                                                                                        +
                                                                                                        +
                                                                                                        + + rangeAddress + + : + FsRangeAddress +
                                                                                                        +
                                                                                                        +
                                                                                                        + + ?showHeaderRow + + : + bool +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + Returns: + + FsTable +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        - +

                                                                                                        @@ -2606,7 +2536,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: this.Tables @@ -2622,40 +2552,39 @@

                                                                                                        -
                                                                                                        - - - - - - -

                                                                                                        - - The FsTables of the FsWorksheet. - -

                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - Returns: - - ResizeArray<FsTable> -
                                                                                                        -
                                                                                                        -
                                                                                                        +
                                                                                                        + +
                                                                                                        + + + + + +

                                                                                                        + The FsTables of the FsWorksheet. +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + Returns: + + ResizeArray<FsTable> +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        - +

                                                                                                        @@ -2664,7 +2593,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: this.TryGetCellAt @@ -2700,58 +2629,57 @@

                                                                                                        -
                                                                                                        - - - - - - -

                                                                                                        - - Returns the FsCell at the given row- and columnIndex if the FsCell exists, else returns None. - -

                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - rowIndex - - : - int32 -
                                                                                                        -
                                                                                                        -
                                                                                                        - - colIndex - - : - int32 -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - Returns: - - FsCell option -
                                                                                                        -
                                                                                                        -
                                                                                                        +
                                                                                                        + +
                                                                                                        + + + + + +

                                                                                                        + Returns the FsCell at the given row- and columnIndex if the FsCell exists, else returns None. +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + rowIndex + + : + int32 +
                                                                                                        +
                                                                                                        +
                                                                                                        + + colIndex + + : + int32 +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + Returns: + + FsCell option +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        - +

                                                                                                        @@ -2760,7 +2688,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: this.TryGetRowValuesAt @@ -2780,7 +2708,7 @@


                                                                                                        Returns: - seq<obj> option + obj seq option

                                                                                                        @@ -2788,50 +2716,49 @@

                                                                                                        -
                                                                                                        - - - - - - -

                                                                                                        - - Gets the string values at the given 1-based rowIndex of the FsRow if it exists, else returns None. - -

                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - rowIndex - - : - int -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - Returns: - - seq<obj> option -
                                                                                                        -
                                                                                                        -
                                                                                                        +
                                                                                                        + +
                                                                                                        + + + + + +

                                                                                                        + Gets the string values at the given 1-based rowIndex of the FsRow if it exists, else returns None. +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + rowIndex + + : + int +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + Returns: + + obj seq option +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        - +

                                                                                                        @@ -2840,7 +2767,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: this.TryRemoveAt @@ -2868,50 +2795,49 @@

                                                                                                        -
                                                                                                        - - - - - - -

                                                                                                        - - Removes the FsRow at a given rowIndex of the FsWorksheet if the FsRow exists. - -

                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - rowIndex - - : - int -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - Returns: - - FsWorksheet -
                                                                                                        -
                                                                                                        -
                                                                                                        +
                                                                                                        + +
                                                                                                        + + + + + +

                                                                                                        + Removes the FsRow at a given rowIndex of the FsWorksheet if the FsRow exists. +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + rowIndex + + : + int +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + Returns: + + FsWorksheet +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        - +

                                                                                                        @@ -2920,7 +2846,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: this.TryRemoveValueAt @@ -2951,58 +2877,59 @@

                                                                                                        -
                                                                                                        - - - - - - -

                                                                                                        - +

                                                                                                        + +
                                                                                                        + + + + + +

                                                                                                        + Removes the value of an FsCell at given row- and columnIndex if it exists from the FsCollection. +

                                                                                                        +
                                                                                                        +
                                                                                                        +

                                                                                                        + Does nothing if the row or column of given index does not exist.

                                                                                                        -
                                                                                                        -

                                                                                                        - Does nothing if the row or column of given index does not exist. -

                                                                                                        -
                                                                                                        -
                                                                                                        - - rowIndex - - : - int -
                                                                                                        -
                                                                                                        -
                                                                                                        - - colIndex - - : - int -
                                                                                                        -
                                                                                                        -
                                                                                                        - - - - - -
                                                                                                        - - ArgumentNullException - - - if columnIndex is null. -
                                                                                                        +
                                                                                                        +
                                                                                                        + + rowIndex + + : + int +
                                                                                                        +
                                                                                                        +
                                                                                                        + + colIndex + + : + int +
                                                                                                        +
                                                                                                        +
                                                                                                        + + + + + +
                                                                                                        + + ArgumentNullException + + + if columnIndex is null. +
                                                                                                        + @@ -3027,7 +2954,7 @@

                                                                                                        - +

                                                                                                        @@ -3036,7 +2963,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: FsWorksheet.addCell cell sheet @@ -3072,58 +2999,57 @@

                                                                                                        -
                                                                                                        - - - - - - -

                                                                                                        - - Adds a FsCell to the FsWorksheet. !Exception if cell address already exists! - -

                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - cell - - : - FsCell -
                                                                                                        -
                                                                                                        -
                                                                                                        - - sheet - - : - FsWorksheet -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - Returns: - - FsWorksheet -
                                                                                                        -
                                                                                                        -
                                                                                                        - - - - +
                                                                                                        + +
                                                                                                        + + + + + +

                                                                                                        + Adds a FsCell to the FsWorksheet. !Exception if cell address already exists! +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + cell + + : + FsCell +
                                                                                                        +
                                                                                                        +
                                                                                                        + + sheet + + : + FsWorksheet +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + Returns: + + FsWorksheet +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + + +
                                                                                                        - +

                                                                                                        @@ -3132,7 +3058,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: FsWorksheet.addCells cell sheet @@ -3145,7 +3071,7 @@

                                                                                                        cell : - seq<FsCell> + FsCell seq
                                                                                                        @@ -3168,58 +3094,57 @@

                                                                                                        -
                                                                                                        - - - - - - -

                                                                                                        - - Adds a sequence of FsCells to the FsWorksheet. !Exception if cell address already exists! - -

                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - cell - - : - seq<FsCell> -
                                                                                                        -
                                                                                                        -
                                                                                                        - - sheet - - : - FsWorksheet -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - Returns: - - FsWorksheet -
                                                                                                        -
                                                                                                        -
                                                                                                        +
                                                                                                        + +
                                                                                                        + + + + + +

                                                                                                        + Adds a sequence of FsCells to the FsWorksheet. !Exception if cell address already exists! +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + cell + + : + FsCell seq +
                                                                                                        +
                                                                                                        +
                                                                                                        + + sheet + + : + FsWorksheet +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + Returns: + + FsWorksheet +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        - +

                                                                                                        @@ -3228,7 +3153,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: FsWorksheet.addTable table sheet @@ -3264,58 +3189,57 @@

                                                                                                        -
                                                                                                        - - - - - - -

                                                                                                        - - Adds an FsTable to the FsWorksheet if an FsTable with the same name is not already attached. - -

                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - table - - : - FsTable -
                                                                                                        -
                                                                                                        -
                                                                                                        - - sheet - - : - FsWorksheet -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - Returns: - - FsWorksheet -
                                                                                                        -
                                                                                                        -
                                                                                                        +
                                                                                                        + +
                                                                                                        + + + + + +

                                                                                                        + Adds an FsTable to the FsWorksheet if an FsTable with the same name is not already attached. +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + table + + : + FsTable +
                                                                                                        +
                                                                                                        +
                                                                                                        + + sheet + + : + FsWorksheet +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + Returns: + + FsWorksheet +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        - +

                                                                                                        @@ -3324,7 +3248,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: FsWorksheet.addTables tables sheet @@ -3360,58 +3284,57 @@

                                                                                                        -
                                                                                                        - - - - - - -

                                                                                                        - - Adds a list of FsTables to an FsWorksheet. All FsTables with a name already present in the FsWorksheet are not attached. - -

                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - tables - - : - 'a list -
                                                                                                        -
                                                                                                        -
                                                                                                        - - sheet - - : - FsWorksheet -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - Returns: - - FsWorksheet -
                                                                                                        -
                                                                                                        -
                                                                                                        +
                                                                                                        + +
                                                                                                        + + + + + +

                                                                                                        + Adds a list of FsTables to an FsWorksheet. All FsTables with a name already present in the FsWorksheet are not attached. +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + tables + + : + 'a list +
                                                                                                        +
                                                                                                        +
                                                                                                        + + sheet + + : + FsWorksheet +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + Returns: + + FsWorksheet +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        - +

                                                                                                        @@ -3420,7 +3343,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: FsWorksheet.appendRow row sheet @@ -3456,58 +3379,57 @@

                                                                                                        -
                                                                                                        - - - - - - -

                                                                                                        - - Appends an FsRow to an FsWorksheet if the rowIndex is not already taken. - -

                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - row - - : - FsRow -
                                                                                                        -
                                                                                                        -
                                                                                                        - - sheet - - : - FsWorksheet -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - Returns: - - FsWorksheet -
                                                                                                        -
                                                                                                        -
                                                                                                        +
                                                                                                        + +
                                                                                                        + + + + + +

                                                                                                        + Appends an FsRow to an FsWorksheet if the rowIndex is not already taken. +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + row + + : + FsRow +
                                                                                                        +
                                                                                                        +
                                                                                                        + + sheet + + : + FsWorksheet +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + Returns: + + FsWorksheet +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        - +

                                                                                                        @@ -3516,7 +3438,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: FsWorksheet.containsRowAt rowIndex sheet @@ -3552,58 +3474,57 @@

                                                                                                        -
                                                                                                        - - - - - - -

                                                                                                        - - Returns true if the FsWorksheet contains an FsRow with the given rowIndex. - -

                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - rowIndex - - : - int -
                                                                                                        -
                                                                                                        -
                                                                                                        - - sheet - - : - FsWorksheet -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - Returns: - - bool -
                                                                                                        -
                                                                                                        -
                                                                                                        +
                                                                                                        + +
                                                                                                        + + + + + +

                                                                                                        + Returns true if the FsWorksheet contains an FsRow with the given rowIndex. +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + rowIndex + + : + int +
                                                                                                        +
                                                                                                        +
                                                                                                        + + sheet + + : + FsWorksheet +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + Returns: + + bool +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        - +

                                                                                                        @@ -3612,7 +3533,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: FsWorksheet.copy sheet @@ -3640,50 +3561,49 @@

                                                                                                        -
                                                                                                        - - - - - - -

                                                                                                        - - Returns a copy of a given FsWorksheet. - -

                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - sheet - - : - FsWorksheet -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - Returns: - - FsWorksheet -
                                                                                                        -
                                                                                                        -
                                                                                                        +
                                                                                                        + +
                                                                                                        + + + + + +

                                                                                                        + Returns a copy of a given FsWorksheet. +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + sheet + + : + FsWorksheet +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + Returns: + + FsWorksheet +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        - +

                                                                                                        @@ -3692,7 +3612,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: FsWorksheet.countRows sheet @@ -3720,50 +3640,49 @@

                                                                                                        -
                                                                                                        - - - - - - -

                                                                                                        - - Returns the number of FsRows contained in the FsWorksheet. - -

                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - sheet - - : - FsWorksheet -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - Returns: - - int -
                                                                                                        -
                                                                                                        -
                                                                                                        +
                                                                                                        + +
                                                                                                        + + + + + +

                                                                                                        + Returns the number of FsRows contained in the FsWorksheet. +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + sheet + + : + FsWorksheet +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + Returns: + + int +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        - +

                                                                                                        @@ -3772,7 +3691,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: FsWorksheet.getCellAt rowIndex colIndex sheet @@ -3816,66 +3735,65 @@

                                                                                                        -
                                                                                                        - - - - - - -

                                                                                                        - - Returns the FsCell at the given row- and columnIndex of a given FsWorksheet. - -

                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - rowIndex - - : - int32 -
                                                                                                        -
                                                                                                        -
                                                                                                        - - colIndex - - : - int32 -
                                                                                                        -
                                                                                                        -
                                                                                                        - - sheet - - : - FsWorksheet -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - Returns: - - FsCell -
                                                                                                        -
                                                                                                        -
                                                                                                        +
                                                                                                        + +
                                                                                                        + + + + + +

                                                                                                        + Returns the FsCell at the given row- and columnIndex of a given FsWorksheet. +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + rowIndex + + : + int32 +
                                                                                                        +
                                                                                                        +
                                                                                                        + + colIndex + + : + int32 +
                                                                                                        +
                                                                                                        +
                                                                                                        + + sheet + + : + FsWorksheet +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + Returns: + + FsCell +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        - +

                                                                                                        @@ -3884,7 +3802,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: FsWorksheet.getColumnAt columnIndex sheet @@ -3920,58 +3838,57 @@

                                                                                                        -
                                                                                                        - - - - - - -

                                                                                                        - - Returns the FsColumn at the given columnIndex of an FsWorksheet. - -

                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - columnIndex - - : - int -
                                                                                                        -
                                                                                                        -
                                                                                                        - - sheet - - : - FsWorksheet -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - Returns: - - FsColumn -
                                                                                                        -
                                                                                                        -
                                                                                                        +
                                                                                                        + +
                                                                                                        + + + + + +

                                                                                                        + Returns the FsColumn at the given columnIndex of an FsWorksheet. +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + columnIndex + + : + int +
                                                                                                        +
                                                                                                        +
                                                                                                        + + sheet + + : + FsWorksheet +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + Returns: + + FsColumn +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        - +

                                                                                                        @@ -3980,7 +3897,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: FsWorksheet.getColumns sheet @@ -4000,7 +3917,7 @@


                                                                                                        Returns: - seq<FsColumn> + FsColumn seq

                                                                                                        @@ -4008,50 +3925,49 @@

                                                                                                        -
                                                                                                        - - - - - - -

                                                                                                        - - Returns the FsColumns of a given FsWorksheet. - -

                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - sheet - - : - FsWorksheet -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - Returns: - - seq<FsColumn> -
                                                                                                        -
                                                                                                        -
                                                                                                        +
                                                                                                        + +
                                                                                                        + + + + + +

                                                                                                        + Returns the FsColumns of a given FsWorksheet. +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + sheet + + : + FsWorksheet +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + Returns: + + FsColumn seq +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        - +

                                                                                                        @@ -4060,7 +3976,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: FsWorksheet.getMaxRowIndex sheet @@ -4088,50 +4004,49 @@

                                                                                                        -
                                                                                                        - - - - - - -

                                                                                                        - - Returns the highest index of any FsRow in a given FsWorksheet. - -

                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - sheet - - : - FsWorksheet -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - Returns: - - FsRow -
                                                                                                        -
                                                                                                        -
                                                                                                        +
                                                                                                        + +
                                                                                                        + + + + + +

                                                                                                        + Returns the highest index of any FsRow in a given FsWorksheet. +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + sheet + + : + FsWorksheet +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + Returns: + + FsRow +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        - +

                                                                                                        @@ -4140,7 +4055,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: FsWorksheet.getRowAt rowIndex sheet @@ -4176,58 +4091,57 @@

                                                                                                        -
                                                                                                        - - - - - - -

                                                                                                        - - Returns the FsRow at the given rowIndex of an FsWorksheet. - -

                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - rowIndex - - : - int -
                                                                                                        -
                                                                                                        -
                                                                                                        - - sheet - - : - FsWorksheet -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - Returns: - - FsRow -
                                                                                                        -
                                                                                                        -
                                                                                                        +
                                                                                                        + +
                                                                                                        + + + + + +

                                                                                                        + Returns the FsRow at the given rowIndex of an FsWorksheet. +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + rowIndex + + : + int +
                                                                                                        +
                                                                                                        +
                                                                                                        + + sheet + + : + FsWorksheet +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + Returns: + + FsRow +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        - +

                                                                                                        @@ -4236,7 +4150,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: FsWorksheet.getRowValuesAt rowIndex sheet @@ -4264,7 +4178,7 @@


                                                                                                        Returns: - seq<obj> + obj seq

                                                                                                        @@ -4272,58 +4186,57 @@

                                                                                                        -
                                                                                                        - - - - - - -

                                                                                                        - - Gets the string values of the FsRow at the given 1-based rowIndex of a given FsWorksheet. - -

                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - rowIndex - - : - int -
                                                                                                        -
                                                                                                        -
                                                                                                        - - sheet - - : - FsWorksheet -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - Returns: - - seq<obj> -
                                                                                                        -
                                                                                                        -
                                                                                                        +
                                                                                                        + +
                                                                                                        + + + + + +

                                                                                                        + Gets the string values of the FsRow at the given 1-based rowIndex of a given FsWorksheet. +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + rowIndex + + : + int +
                                                                                                        +
                                                                                                        +
                                                                                                        + + sheet + + : + FsWorksheet +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + Returns: + + obj seq +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        - +

                                                                                                        @@ -4332,7 +4245,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: FsWorksheet.getRows sheet @@ -4360,50 +4273,49 @@

                                                                                                        -
                                                                                                        - - - - - - -

                                                                                                        - - Returns the FsRows of a given FsWorksheet. - -

                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - sheet - - : - FsWorksheet -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - Returns: - - ResizeArray<FsRow> -
                                                                                                        -
                                                                                                        -
                                                                                                        +
                                                                                                        + +
                                                                                                        + + + + + +

                                                                                                        + Returns the FsRows of a given FsWorksheet. +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + sheet + + : + FsWorksheet +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + Returns: + + ResizeArray<FsRow> +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        - +

                                                                                                        @@ -4412,7 +4324,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: FsWorksheet.getTableByName tableName sheet @@ -4448,58 +4360,57 @@

                                                                                                        -
                                                                                                        - - - - - - -

                                                                                                        - - Returns the FsTable of the given name from an FsWorksheet. - -

                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - tableName - - : - string -
                                                                                                        -
                                                                                                        -
                                                                                                        - - sheet - - : - FsWorksheet -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - Returns: - - FsTable -
                                                                                                        -
                                                                                                        -
                                                                                                        +
                                                                                                        + +
                                                                                                        + + + + + +

                                                                                                        + Returns the FsTable of the given name from an FsWorksheet. +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + tableName + + : + string +
                                                                                                        +
                                                                                                        +
                                                                                                        + + sheet + + : + FsWorksheet +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + Returns: + + FsTable +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        - +

                                                                                                        @@ -4508,7 +4419,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: FsWorksheet.init name @@ -4536,50 +4447,49 @@

                                                                                                        -
                                                                                                        - - - - - - -

                                                                                                        - - Creates an empty FsWorksheet with the given name. - -

                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - name - - : - string -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - Returns: - - FsWorksheet -
                                                                                                        -
                                                                                                        -
                                                                                                        +
                                                                                                        + +
                                                                                                        + + + + + +

                                                                                                        + Creates an empty FsWorksheet with the given name. +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + name + + : + string +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + Returns: + + FsWorksheet +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        - +

                                                                                                        @@ -4588,7 +4498,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: FsWorksheet.insertBefore row refRow sheet @@ -4632,66 +4542,65 @@

                                                                                                        -
                                                                                                        - - - - - - -

                                                                                                        - - Inserts an FsRow into the FsWorksheet before a reference FsRow. - -

                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - row - - : - FsRow -
                                                                                                        -
                                                                                                        -
                                                                                                        - - refRow - - : - FsRow -
                                                                                                        -
                                                                                                        -
                                                                                                        - - sheet - - : - FsWorksheet -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - Returns: - - FsWorksheet -
                                                                                                        -
                                                                                                        -
                                                                                                        +
                                                                                                        + +
                                                                                                        + + + + + +

                                                                                                        + Inserts an FsRow into the FsWorksheet before a reference FsRow. +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + row + + : + FsRow +
                                                                                                        +
                                                                                                        +
                                                                                                        + + refRow + + : + FsRow +
                                                                                                        +
                                                                                                        +
                                                                                                        + + sheet + + : + FsWorksheet +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + Returns: + + FsWorksheet +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        - +

                                                                                                        @@ -4700,7 +4609,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: FsWorksheet.insertValueAt value rowIndex colIndex sheet @@ -4747,67 +4656,66 @@

                                                                                                        -
                                                                                                        - - - - - - -

                                                                                                        - - Adds a value at the given row- and columnIndex to a given FsWorksheet. +

                                                                                                        + +
                                                                                                        + + + + + +

                                                                                                        + Adds a value at the given row- and columnIndex to a given FsWorksheet. If an FsCell exists at the given position, it is shoved to the right. - -

                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - value - - : - 'a -
                                                                                                        -
                                                                                                        -
                                                                                                        - - rowIndex - - : - int -
                                                                                                        -
                                                                                                        -
                                                                                                        - - colIndex - - : - int -
                                                                                                        -
                                                                                                        -
                                                                                                        - - sheet - - : - FsWorksheet -
                                                                                                        -
                                                                                                        -
                                                                                                        +

                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + value + + : + 'a +
                                                                                                        +
                                                                                                        +
                                                                                                        + + rowIndex + + : + int +
                                                                                                        +
                                                                                                        +
                                                                                                        + + colIndex + + : + int +
                                                                                                        +
                                                                                                        +
                                                                                                        + + sheet + + : + FsWorksheet +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        - +

                                                                                                        @@ -4816,7 +4724,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: FsWorksheet.mapRowsInPlace f sheet @@ -4852,58 +4760,57 @@

                                                                                                        -
                                                                                                        - - - - - - -

                                                                                                        - - Applies function f in a given FsWorksheet to all FsRows and returns the modified FsWorksheet. - -

                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - f - - : - FsRow -> FsRow -
                                                                                                        -
                                                                                                        -
                                                                                                        - - sheet - - : - FsWorksheet -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - Returns: - - FsWorksheet -
                                                                                                        -
                                                                                                        -
                                                                                                        +
                                                                                                        + +
                                                                                                        + + + + + +

                                                                                                        + Applies function f in a given FsWorksheet to all FsRows and returns the modified FsWorksheet. +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + f + + : + FsRow -> FsRow +
                                                                                                        +
                                                                                                        +
                                                                                                        + + sheet + + : + FsWorksheet +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + Returns: + + FsWorksheet +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        - +

                                                                                                        @@ -4912,7 +4819,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: FsWorksheet.removeCellAt rowIndex colIndex sheet @@ -4956,66 +4863,65 @@

                                                                                                        -
                                                                                                        - - - - - - -

                                                                                                        - - Removes the value at the given row- and columnIndex from an FsWorksheet. - -

                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - rowIndex - - : - int -
                                                                                                        -
                                                                                                        -
                                                                                                        - - colIndex - - : - int -
                                                                                                        -
                                                                                                        -
                                                                                                        - - sheet - - : - FsWorksheet -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - Returns: - - FsWorksheet -
                                                                                                        -
                                                                                                        -
                                                                                                        +
                                                                                                        + +
                                                                                                        + + + + + +

                                                                                                        + Removes the value at the given row- and columnIndex from an FsWorksheet. +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + rowIndex + + : + int +
                                                                                                        +
                                                                                                        +
                                                                                                        + + colIndex + + : + int +
                                                                                                        +
                                                                                                        +
                                                                                                        + + sheet + + : + FsWorksheet +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + Returns: + + FsWorksheet +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        - +

                                                                                                        @@ -5024,7 +4930,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: FsWorksheet.removeRowAt rowIndex sheet @@ -5060,58 +4966,57 @@

                                                                                                        -
                                                                                                        - - - - - - -

                                                                                                        - - Removes the FsRow at a given rowIndex of an FsWorksheet. - -

                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - rowIndex - - : - int -
                                                                                                        -
                                                                                                        -
                                                                                                        - - sheet - - : - FsWorksheet -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - Returns: - - FsWorksheet -
                                                                                                        -
                                                                                                        -
                                                                                                        +
                                                                                                        + +
                                                                                                        + + + + + +

                                                                                                        + Removes the FsRow at a given rowIndex of an FsWorksheet. +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + rowIndex + + : + int +
                                                                                                        +
                                                                                                        +
                                                                                                        + + sheet + + : + FsWorksheet +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + Returns: + + FsWorksheet +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        - +

                                                                                                        @@ -5120,7 +5025,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: FsWorksheet.removeValueAt rowIndex colIndex sheet @@ -5159,79 +5064,80 @@

                                                                                                        -
                                                                                                        - - - - - - -

                                                                                                        - +

                                                                                                        + +
                                                                                                        + + + + + +

                                                                                                        + Removes the value of an FsCell at given row- and columnIndex from the FsCollection of a given FsWorksheet. -

                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - rowIndex - - : - int -
                                                                                                        -
                                                                                                        -
                                                                                                        - - colIndex - - : - int -
                                                                                                        -
                                                                                                        -
                                                                                                        - - sheet - - : - FsWorksheet -
                                                                                                        -
                                                                                                        -
                                                                                                        - - - - - - - - - -
                                                                                                        - - ArgumentNullException - - - if rowIndex or columnIndex is null. -
                                                                                                        - - KeyNotFoundException - - - if row or column at the given index does not exist. -
                                                                                                        +

                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + rowIndex + + : + int +
                                                                                                        +
                                                                                                        +
                                                                                                        + + colIndex + + : + int +
                                                                                                        +
                                                                                                        +
                                                                                                        + + sheet + + : + FsWorksheet +
                                                                                                        +
                                                                                                        +
                                                                                                        + + + + + + + + + +
                                                                                                        + + ArgumentNullException + + + if rowIndex or columnIndex is null. +
                                                                                                        + + KeyNotFoundException + + + if row or column at the given index does not exist. +
                                                                                                        +
                                                                                                        - +

                                                                                                        @@ -5240,7 +5146,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: FsWorksheet.setValueAt value rowIndex colIndex sheet @@ -5292,76 +5198,75 @@

                                                                                                        -
                                                                                                        - - - - - - -

                                                                                                        - - Adds a value at the given row- and columnIndex of a given FsWorksheet. +

                                                                                                        + +
                                                                                                        + + + + + +

                                                                                                        + Adds a value at the given row- and columnIndex of a given FsWorksheet. If an FsCell exists at the given position, it is overwritten. - -

                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - value - - : - 'a -
                                                                                                        -
                                                                                                        -
                                                                                                        - - rowIndex - - : - int32 -
                                                                                                        -
                                                                                                        -
                                                                                                        - - colIndex - - : - int32 -
                                                                                                        -
                                                                                                        -
                                                                                                        - - sheet - - : - FsWorksheet -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - Returns: - - FsWorksheet -
                                                                                                        -
                                                                                                        -
                                                                                                        +

                                                                                                        +
                                                                                                        + +
                                                                                                        +
                                                                                                        + + value + + : + 'a +
                                                                                                        +
                                                                                                        +
                                                                                                        + + rowIndex + + : + int32 +
                                                                                                        +
                                                                                                        +
                                                                                                        + + colIndex + + : + int32 +
                                                                                                        +
                                                                                                        +
                                                                                                        + + sheet + + : + FsWorksheet +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + Returns: + + FsWorksheet +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        - +

                                                                                                        @@ -5370,7 +5275,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: FsWorksheet.tryGetCellAt rowIndex colIndex sheet @@ -5414,66 +5319,65 @@

                                                                                                        -
                                                                                                        - - - - - - -

                                                                                                        - - Returns the FsCell at the given row- and columnIndex of a given FsWorksheet if the FsCell exists, else returns None. - -

                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - rowIndex - - : - int32 -
                                                                                                        -
                                                                                                        -
                                                                                                        - - colIndex - - : - int32 -
                                                                                                        -
                                                                                                        -
                                                                                                        - - sheet - - : - FsWorksheet -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - Returns: - - FsCell option -
                                                                                                        -
                                                                                                        -
                                                                                                        +
                                                                                                        + +
                                                                                                        + + + + + +

                                                                                                        + Returns the FsCell at the given row- and columnIndex of a given FsWorksheet if the FsCell exists, else returns None. +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + rowIndex + + : + int32 +
                                                                                                        +
                                                                                                        +
                                                                                                        + + colIndex + + : + int32 +
                                                                                                        +
                                                                                                        +
                                                                                                        + + sheet + + : + FsWorksheet +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + Returns: + + FsCell option +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        - +

                                                                                                        @@ -5482,7 +5386,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: FsWorksheet.tryGetColumnAt columnIndex sheet @@ -5518,58 +5422,57 @@

                                                                                                        -
                                                                                                        - - - - - - -

                                                                                                        - - Returns the FsColumn at the given columnIndex of an FsWorksheet if it exists, else returns None. - -

                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - columnIndex - - : - int -
                                                                                                        -
                                                                                                        -
                                                                                                        - - sheet - - : - FsWorksheet -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - Returns: - - FsColumn option -
                                                                                                        -
                                                                                                        -
                                                                                                        +
                                                                                                        + +
                                                                                                        + + + + + +

                                                                                                        + Returns the FsColumn at the given columnIndex of an FsWorksheet if it exists, else returns None. +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + columnIndex + + : + int +
                                                                                                        +
                                                                                                        +
                                                                                                        + + sheet + + : + FsWorksheet +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + Returns: + + FsColumn option +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        - +

                                                                                                        @@ -5578,7 +5481,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: FsWorksheet.tryGetRowAfter rowIndex sheet @@ -5614,58 +5517,57 @@

                                                                                                        -
                                                                                                        - - - - - - -

                                                                                                        - - Returns the FsRow matching or exceeding the given rowIndex if it exists, else returns None. - -

                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - rowIndex - - : - int -
                                                                                                        -
                                                                                                        -
                                                                                                        - - sheet - - : - FsWorksheet -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - Returns: - - FsRow option -
                                                                                                        -
                                                                                                        -
                                                                                                        +
                                                                                                        + +
                                                                                                        + + + + + +

                                                                                                        + Returns the FsRow matching or exceeding the given rowIndex if it exists, else returns None. +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + rowIndex + + : + int +
                                                                                                        +
                                                                                                        +
                                                                                                        + + sheet + + : + FsWorksheet +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + Returns: + + FsRow option +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        - +

                                                                                                        @@ -5674,7 +5576,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: FsWorksheet.tryGetRowAt rowIndex sheet @@ -5710,58 +5612,57 @@

                                                                                                        -
                                                                                                        - - - - - - -

                                                                                                        - - Returns the FsRow at the given rowIndex of an FsWorksheet if it exists, else returns None. - -

                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - rowIndex - - : - int -
                                                                                                        -
                                                                                                        -
                                                                                                        - - sheet - - : - FsWorksheet -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - Returns: - - FsRow option -
                                                                                                        -
                                                                                                        -
                                                                                                        +
                                                                                                        + +
                                                                                                        + + + + + +

                                                                                                        + Returns the FsRow at the given rowIndex of an FsWorksheet if it exists, else returns None. +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + rowIndex + + : + int +
                                                                                                        +
                                                                                                        +
                                                                                                        + + sheet + + : + FsWorksheet +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + Returns: + + FsRow option +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        - +

                                                                                                        @@ -5770,7 +5671,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: FsWorksheet.tryGetRowValuesAt rowIndex sheet @@ -5798,7 +5699,7 @@


                                                                                                        Returns: - seq<obj> option + obj seq option

                                                                                                        @@ -5806,58 +5707,57 @@

                                                                                                        -
                                                                                                        - - - - - - -

                                                                                                        - - Takes an FsWorksheet and gets the string values at the given 1-based rowIndex of the FsRow if it exists, else returns None. - -

                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - rowIndex - - : - int -
                                                                                                        -
                                                                                                        -
                                                                                                        - - sheet - - : - FsWorksheet -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - Returns: - - seq<obj> option -
                                                                                                        -
                                                                                                        -
                                                                                                        +
                                                                                                        + +
                                                                                                        + + + + + +

                                                                                                        + Takes an FsWorksheet and gets the string values at the given 1-based rowIndex of the FsRow if it exists, else returns None. +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + rowIndex + + : + int +
                                                                                                        +
                                                                                                        +
                                                                                                        + + sheet + + : + FsWorksheet +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + Returns: + + obj seq option +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        - +

                                                                                                        @@ -5866,7 +5766,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: FsWorksheet.tryGetTableByName tableName sheet @@ -5902,58 +5802,57 @@

                                                                                                        -
                                                                                                        - - - - - - -

                                                                                                        - - Returns the FsTable of the given name from an FsWorksheet if it exists. Else returns None. - -

                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - tableName - - : - string -
                                                                                                        -
                                                                                                        -
                                                                                                        - - sheet - - : - FsWorksheet -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - Returns: - - FsTable option -
                                                                                                        -
                                                                                                        -
                                                                                                        +
                                                                                                        + +
                                                                                                        + + + + + +

                                                                                                        + Returns the FsTable of the given name from an FsWorksheet if it exists. Else returns None. +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + tableName + + : + string +
                                                                                                        +
                                                                                                        +
                                                                                                        + + sheet + + : + FsWorksheet +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + Returns: + + FsTable option +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        - +

                                                                                                        @@ -5962,7 +5861,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: FsWorksheet.tryRemoveAt rowIndex sheet @@ -5993,49 +5892,48 @@

                                                                                                        -
                                                                                                        - - - - - - -

                                                                                                        - - Removes the FsRow at a given rowIndex of an FsWorksheet if the FsRow exists. - -

                                                                                                        -
                                                                                                        -
                                                                                                        -
                                                                                                        - - rowIndex - - : - int -
                                                                                                        -
                                                                                                        -
                                                                                                        - - sheet - - : - FsWorksheet -
                                                                                                        -
                                                                                                        -
                                                                                                        +
                                                                                                        + +
                                                                                                        + + + + + +

                                                                                                        + Removes the FsRow at a given rowIndex of an FsWorksheet if the FsRow exists. +

                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        + + rowIndex + + : + int +
                                                                                                        +
                                                                                                        +
                                                                                                        + + sheet + + : + FsWorksheet +
                                                                                                        +
                                                                                                        +
                                                                                                        +
                                                                                                        - +

                                                                                                        @@ -6044,7 +5942,7 @@

                                                                                                        -
                                                                                                        +
                                                                                                        Full Usage: FsWorksheet.tryRemoveValueAt rowIndex colIndex sheet @@ -6083,85 +5981,91 @@

                                                                                                        -
                                                                                                        - - - - - - -

                                                                                                        - +

                                                                                                        + +
                                                                                                        + + + + + +

                                                                                                        + Removes the value of an FsCell at given row- and columnIndex if it exists from the FsCollection of a given FsWorksheet. +

                                                                                                        +
                                                                                                        +
                                                                                                        +

                                                                                                        + Does nothing if the row or column of given index does not exist.

                                                                                                        -
                                                                                                        -

                                                                                                        - Does nothing if the row or column of given index does not exist. -

                                                                                                        -
                                                                                                        -
                                                                                                        - - rowIndex - - : - int -
                                                                                                        -
                                                                                                        -
                                                                                                        - - colIndex - - : - int -
                                                                                                        -
                                                                                                        -
                                                                                                        - - sheet - - : - FsWorksheet -
                                                                                                        -
                                                                                                        -
                                                                                                        - - - - - -
                                                                                                        - - ArgumentNullException - - - if columnIndex is null. -
                                                                                                        +
                                                                                                        +
                                                                                                        + + rowIndex + + : + int +
                                                                                                        +
                                                                                                        +
                                                                                                        + + colIndex + + : + int +
                                                                                                        +
                                                                                                        +
                                                                                                        + + sheet + + : + FsWorksheet +
                                                                                                        +
                                                                                                        +
                                                                                                        + + + + + +
                                                                                                        + + ArgumentNullException + + + if columnIndex is null. +
                                                                                                        +
                                                                                                        -

                                                                                                        -
                                                                                                        -

                                                                                                        +

                                                                                                        + + + +
                                                                                                        +
                                                                                                          +

                                                                                                          Type something to start searching.

                                                                                                          +
                                                                                                          +
                                                                                                          + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-interactive-formatterkernelextension.html b/reference/fsspreadsheet-interactive-formatterkernelextension.html index df484765..08731272 100644 --- a/reference/fsspreadsheet-interactive-formatterkernelextension.html +++ b/reference/fsspreadsheet-interactive-formatterkernelextension.html @@ -1,62 +1,50 @@ - - + - - FormatterKernelExtension (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                          -
                                                                                                          - +
                                                                                                          -
                                                                                                          -
                                                                                                          -
                                                                                                          - +
                                                                                                          + + + + + +
                                                                                                          + + +
                                                                                                          +
                                                                                                          +

                                                                                                          FormatterKernelExtension Type

                                                                                                          @@ -91,7 +110,7 @@

                                                                                                          All Interfaces: - IKernelExtension + IKernelExtension
                                                                                                          @@ -126,7 +145,7 @@

                                                                                                          - +

                                                                                                          @@ -135,7 +154,7 @@

                                                                                                          -
                                                                                                          +
                                                                                                          Full Usage: FormatterKernelExtension() @@ -151,23 +170,6 @@

                                                                                                          -
                                                                                                          - - - - - - -

                                                                                                          - -

                                                                                                          -
                                                                                                          @@ -185,19 +187,24 @@

                                                                                                          -
                                                                                                          -

                                                                                                          -

                                                                                                          +
                                                                                                          + + + +
                                                                                                          +
                                                                                                            +

                                                                                                            Type something to start searching.

                                                                                                            +
                                                                                                            +
                                                                                                            + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-interactive-formatters.html b/reference/fsspreadsheet-interactive-formatters.html index 3be726ab..d91b96db 100644 --- a/reference/fsspreadsheet-interactive-formatters.html +++ b/reference/fsspreadsheet-interactive-formatters.html @@ -1,62 +1,50 @@ - - + - - Formatters (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                            -
                                                                                                            - +
                                                                                                            -
                                                                                                            -
                                                                                                            -
                                                                                                            - +
                                                                                                            + + + + + +
                                                                                                            + + +
                                                                                                            +
                                                                                                            +

                                                                                                            Formatters Module

                                                                                                            @@ -149,23 +168,6 @@

                                                                                                            -
                                                                                                            - - - - - - -

                                                                                                            - -

                                                                                                            -
                                                                                                            @@ -227,23 +229,6 @@

                                                                                                            -
                                                                                                            - - - - - - -

                                                                                                            - -

                                                                                                            -
                                                                                                            @@ -277,19 +262,24 @@

                                                                                                            -
                                                                                                            -
                                                                                                            -
                                                                                                            + + + + +
                                                                                                            +
                                                                                                              +

                                                                                                              Type something to start searching.

                                                                                                              +
                                                                                                              +
                                                                                                              + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-interactive-fssparsematrix-1.html b/reference/fsspreadsheet-interactive-fssparsematrix-1.html index f5bc338a..b304eeed 100644 --- a/reference/fsspreadsheet-interactive-fssparsematrix-1.html +++ b/reference/fsspreadsheet-interactive-fssparsematrix-1.html @@ -1,62 +1,50 @@ - - + - - FsSparseMatrix<'T> (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                              -
                                                                                                              - +
                                                                                                              -
                                                                                                              -
                                                                                                              -
                                                                                                              - +
                                                                                                              + + + + + +
                                                                                                              + + +
                                                                                                              +
                                                                                                              +

                                                                                                              FsSparseMatrix<'T> Type

                                                                                                              @@ -93,9 +112,7 @@

                                                                                                              - - A FsSparseMatrix - + A FsSparseMatrix

                                                                                                              @@ -124,7 +141,7 @@

                                                                                                              - +

                                                                                                              @@ -133,7 +150,7 @@

                                                                                                              -
                                                                                                              +
                                                                                                              Full Usage: FsSparseMatrix(defaultEmptyValue, sparseValues, sparseRowOffsets, ncols, columnValues) @@ -193,23 +210,6 @@

                                                                                                              -
                                                                                                              - - - - - - -

                                                                                                              - -

                                                                                                              -
                                                                                                              @@ -285,7 +285,7 @@

                                                                                                              - +

                                                                                                              @@ -294,7 +294,7 @@

                                                                                                              -
                                                                                                              +
                                                                                                              Full Usage: this[i, j] @@ -330,23 +330,6 @@

                                                                                                              -
                                                                                                              - - - - - - -

                                                                                                              - -

                                                                                                              -
                                                                                                              @@ -379,7 +362,7 @@

                                                                                                              - +

                                                                                                              @@ -388,7 +371,7 @@

                                                                                                              -
                                                                                                              +
                                                                                                              Full Usage: this.MaxIndexForRow @@ -416,23 +399,6 @@

                                                                                                              -
                                                                                                              - - - - - - -

                                                                                                              - -

                                                                                                              -
                                                                                                              @@ -457,7 +423,7 @@

                                                                                                              - +

                                                                                                              @@ -466,7 +432,7 @@

                                                                                                              -
                                                                                                              +
                                                                                                              Full Usage: this.MinIndexForRow @@ -494,23 +460,6 @@

                                                                                                              -
                                                                                                              - - - - - - -

                                                                                                              - -

                                                                                                              -
                                                                                                              @@ -535,7 +484,7 @@

                                                                                                              - +

                                                                                                              @@ -544,7 +493,7 @@

                                                                                                              -
                                                                                                              +
                                                                                                              Full Usage: this.NumCols @@ -560,23 +509,6 @@

                                                                                                              -
                                                                                                              - - - - - - -

                                                                                                              - -

                                                                                                              -
                                                                                                              @@ -591,7 +523,7 @@

                                                                                                              - +

                                                                                                              @@ -600,7 +532,7 @@

                                                                                                              -
                                                                                                              +
                                                                                                              Full Usage: this.NumRows @@ -616,23 +548,6 @@

                                                                                                              -
                                                                                                              - - - - - - -

                                                                                                              - -

                                                                                                              -
                                                                                                              @@ -647,7 +562,7 @@

                                                                                                              - +

                                                                                                              @@ -656,7 +571,7 @@

                                                                                                              -
                                                                                                              +
                                                                                                              Full Usage: this.SparseColumnValues @@ -672,23 +587,6 @@

                                                                                                              -
                                                                                                              - - - - - - -

                                                                                                              - -

                                                                                                              -
                                                                                                              @@ -703,7 +601,7 @@

                                                                                                              - +

                                                                                                              @@ -712,7 +610,7 @@

                                                                                                              -
                                                                                                              +
                                                                                                              Full Usage: this.SparseRowOffsets @@ -728,23 +626,6 @@

                                                                                                              -
                                                                                                              - - - - - - -

                                                                                                              - -

                                                                                                              -
                                                                                                              @@ -759,7 +640,7 @@

                                                                                                              - +

                                                                                                              @@ -768,7 +649,7 @@

                                                                                                              -
                                                                                                              +
                                                                                                              Full Usage: this.SparseValues @@ -784,23 +665,6 @@

                                                                                                              -
                                                                                                              - - - - - - -

                                                                                                              - -

                                                                                                              -
                                                                                                              @@ -834,7 +698,7 @@

                                                                                                              - +

                                                                                                              @@ -843,7 +707,7 @@

                                                                                                              -
                                                                                                              +
                                                                                                              Full Usage: FsSparseMatrix.init emptyValue maxi maxj s @@ -880,7 +744,7 @@

                                                                                                              s : - seq<int * int * 'T> + (int * int * 'T) seq
                                                                                                              @@ -895,74 +759,73 @@

                                                                                                              -
                                                                                                              - - - - - - -

                                                                                                              - - Creates a matrix from a sparse sequence - -

                                                                                                              -
                                                                                                              -
                                                                                                              -
                                                                                                              - - emptyValue - - : - 'T -
                                                                                                              -
                                                                                                              -
                                                                                                              - - maxi - - : - int -
                                                                                                              -
                                                                                                              -
                                                                                                              - - maxj - - : - int -
                                                                                                              -
                                                                                                              -
                                                                                                              - - s - - : - seq<int * int * 'T> -
                                                                                                              -
                                                                                                              -
                                                                                                              -
                                                                                                              -
                                                                                                              - - Returns: - - FsSparseMatrix<'T> -
                                                                                                              -
                                                                                                              -
                                                                                                              +
                                                                                                              + +
                                                                                                              + + + + + +

                                                                                                              + Creates a matrix from a sparse sequence +

                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + + emptyValue + + : + 'T +
                                                                                                              +
                                                                                                              +
                                                                                                              + + maxi + + : + int +
                                                                                                              +
                                                                                                              +
                                                                                                              + + maxj + + : + int +
                                                                                                              +
                                                                                                              +
                                                                                                              + + s + + : + (int * int * 'T) seq +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + + Returns: + + FsSparseMatrix<'T> +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              - +

                                                                                                              @@ -971,7 +834,7 @@

                                                                                                              -
                                                                                                              +
                                                                                                              Full Usage: FsSparseMatrix.toArray2D m @@ -999,63 +862,67 @@

                                                                                                              -
                                                                                                              - - - - - - -

                                                                                                              - - Returns the SparseMatrix as Array2D - -

                                                                                                              -
                                                                                                              -
                                                                                                              -
                                                                                                              - - m - - : - FsSparseMatrix<'T> -
                                                                                                              -
                                                                                                              -
                                                                                                              -
                                                                                                              -
                                                                                                              - - Returns: - - 'T[,] -
                                                                                                              -
                                                                                                              -
                                                                                                              +
                                                                                                              + +
                                                                                                              + + + + + +

                                                                                                              + Returns the SparseMatrix as Array2D +

                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + + m + + : + FsSparseMatrix<'T> +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              + + Returns: + + 'T[,] +
                                                                                                              +
                                                                                                              +
                                                                                                              +
                                                                                                              -

                                                                                                              -
                                                                                                              -

                                                                                                              +

                                                                                                              + + + +
                                                                                                              +
                                                                                                                +

                                                                                                                Type something to start searching.

                                                                                                                +
                                                                                                                +
                                                                                                                + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-interactive.html b/reference/fsspreadsheet-interactive.html index 4738e584..c9c67714 100644 --- a/reference/fsspreadsheet-interactive.html +++ b/reference/fsspreadsheet-interactive.html @@ -1,62 +1,50 @@ - - + - - FsSpreadsheet.Interactive - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                -
                                                                                                                - +
                                                                                                                -
                                                                                                                -
                                                                                                                -
                                                                                                                - +
                                                                                                                + + + + + +
                                                                                                                + + +
                                                                                                                +
                                                                                                                +

                                                                                                                FsSpreadsheet.Interactive Namespace

                                                                                                                @@ -101,16 +120,13 @@

                                                                                                                - - +

                                                                                                                @@ -131,16 +147,13 @@

                                                                                                                - - +

                                                                                                                @@ -161,21 +174,16 @@

                                                                                                                - - +

                                                                                                                - - A FsSparseMatrix - + A FsSparseMatrix

                                                                                                                @@ -183,19 +191,24 @@

                                                                                                                -

                                                                                                                -

                                                                                                                -
                                                                                                                + + + + +
                                                                                                                +
                                                                                                                  +

                                                                                                                  Type something to start searching.

                                                                                                                  +
                                                                                                                  +
                                                                                                                  + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-js-fsspreadsheet.html b/reference/fsspreadsheet-js-fsspreadsheet.html index 05755790..e01eb87c 100644 --- a/reference/fsspreadsheet-js-fsspreadsheet.html +++ b/reference/fsspreadsheet-js-fsspreadsheet.html @@ -1,62 +1,50 @@ - - + - - FsSpreadsheet (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                  -
                                                                                                                  - +
                                                                                                                  -
                                                                                                                  -
                                                                                                                  -
                                                                                                                  - +
                                                                                                                  + + + + + +
                                                                                                                  + + +
                                                                                                                  +
                                                                                                                  +

                                                                                                                  FsSpreadsheet Module

                                                                                                                  @@ -158,23 +177,6 @@

                                                                                                                  -
                                                                                                                  - - - - - - -

                                                                                                                  - -

                                                                                                                  -

                                                                                                                  Extended Type: FsWorkbook @@ -256,23 +258,6 @@

                                                                                                                  -
                                                                                                                  - - - - - - -

                                                                                                                  - -

                                                                                                                  -

                                                                                                                  Extended Type: FsWorkbook @@ -338,7 +323,7 @@


                                                                                                                  Returns: - Promise<byte[]> + Promise<byte[]>

                                                                                                                  @@ -346,23 +331,6 @@

                                                                                                                  -
                                                                                                                  - - - - - - -

                                                                                                                  - -

                                                                                                                  -

                                                                                                                  Extended Type: FsWorkbook @@ -382,7 +350,7 @@

                                                                                                                  Returns: - Promise<byte[]> + Promise<byte[]>
                                                                                                                  @@ -420,7 +388,7 @@


                                                                                                                  Returns: - Promise<unit> + Promise<unit>

                                                                                                                  @@ -428,23 +396,6 @@

                                                                                                                  -
                                                                                                                  - - - - - - -

                                                                                                                  - -

                                                                                                                  -

                                                                                                                  Extended Type: FsWorkbook @@ -464,7 +415,7 @@

                                                                                                                  Returns: - Promise<unit> + Promise<unit>
                                                                                                                  @@ -495,14 +446,14 @@

                                                                                                                  stream : - Stream + Stream

                                                                                                                  Returns: - Promise<unit> + Promise<unit>

                                                                                                                  @@ -510,23 +461,6 @@

                                                                                                                  -
                                                                                                                  - - - - - - -

                                                                                                                  - -

                                                                                                                  -

                                                                                                                  Extended Type: FsWorkbook @@ -537,7 +471,7 @@

                                                                                                                  stream : - Stream + Stream
                                                                                                                  @@ -546,7 +480,7 @@

                                                                                                                  Returns: - Promise<unit> + Promise<unit>
                                                                                                                  @@ -592,23 +526,6 @@

                                                                                                                  -
                                                                                                                  - - - - - - -

                                                                                                                  - -

                                                                                                                  -

                                                                                                                  Extended Type: FsWorkbook @@ -674,23 +591,6 @@

                                                                                                                  -
                                                                                                                  - - - - - - -

                                                                                                                  - -

                                                                                                                  -

                                                                                                                  Extended Type: FsWorkbook @@ -748,7 +648,7 @@


                                                                                                                  Returns: - Promise<FsWorkbook> + Promise<FsWorkbook>

                                                                                                                  @@ -756,23 +656,6 @@

                                                                                                                  -
                                                                                                                  - - - - - - -

                                                                                                                  - -

                                                                                                                  -

                                                                                                                  Extended Type: FsWorkbook @@ -792,7 +675,7 @@

                                                                                                                  Returns: - Promise<FsWorkbook> + Promise<FsWorkbook>
                                                                                                                  @@ -830,7 +713,7 @@


                                                                                                                  Returns: - Promise<FsWorkbook> + Promise<FsWorkbook>

                                                                                                                  @@ -838,23 +721,6 @@

                                                                                                                  -
                                                                                                                  - - - - - - -

                                                                                                                  - -

                                                                                                                  -

                                                                                                                  Extended Type: FsWorkbook @@ -874,7 +740,7 @@

                                                                                                                  Returns: - Promise<FsWorkbook> + Promise<FsWorkbook>
                                                                                                                  @@ -905,14 +771,14 @@

                                                                                                                  stream : - Stream + Stream

                                                                                                                  Returns: - Promise<FsWorkbook> + Promise<FsWorkbook>

                                                                                                                  @@ -920,23 +786,6 @@

                                                                                                                  -
                                                                                                                  - - - - - - -

                                                                                                                  - -

                                                                                                                  -

                                                                                                                  Extended Type: FsWorkbook @@ -947,7 +796,7 @@

                                                                                                                  stream : - Stream + Stream
                                                                                                                  @@ -956,7 +805,7 @@

                                                                                                                  Returns: - Promise<FsWorkbook> + Promise<FsWorkbook>
                                                                                                                  @@ -1018,23 +867,6 @@

                                                                                                                  -
                                                                                                                  - - - - - - -

                                                                                                                  - -

                                                                                                                  -

                                                                                                                  Extended Type: FsWorkbook @@ -1132,23 +964,6 @@

                                                                                                                  -
                                                                                                                  - - - - - - -

                                                                                                                  - -

                                                                                                                  -

                                                                                                                  Extended Type: FsWorkbook @@ -1222,7 +1037,7 @@


                                                                                                                  Returns: - Promise<byte[]> + Promise<byte[]>

                                                                                                                  @@ -1230,23 +1045,6 @@

                                                                                                                  -
                                                                                                                  - - - - - - -

                                                                                                                  - -

                                                                                                                  -

                                                                                                                  Extended Type: FsWorkbook @@ -1266,7 +1064,7 @@

                                                                                                                  Returns: - Promise<byte[]> + Promise<byte[]>
                                                                                                                  @@ -1312,7 +1110,7 @@


                                                                                                                  Returns: - Promise<unit> + Promise<unit>

                                                                                                                  @@ -1320,23 +1118,6 @@

                                                                                                                  -
                                                                                                                  - - - - - - -

                                                                                                                  - -

                                                                                                                  -

                                                                                                                  Extended Type: FsWorkbook @@ -1364,7 +1145,7 @@

                                                                                                                  Returns: - Promise<unit> + Promise<unit>
                                                                                                                  @@ -1395,7 +1176,7 @@

                                                                                                                  stream : - Stream + Stream
                                                                                                                  @@ -1410,7 +1191,7 @@


                                                                                                                  Returns: - Promise<unit> + Promise<unit>

                                                                                                                  @@ -1418,23 +1199,6 @@

                                                                                                                  -
                                                                                                                  - - - - - - -

                                                                                                                  - -

                                                                                                                  -

                                                                                                                  Extended Type: FsWorkbook @@ -1445,7 +1209,7 @@

                                                                                                                  stream : - Stream + Stream
                                                                                                                  @@ -1462,7 +1226,7 @@

                                                                                                                  Returns: - Promise<unit> + Promise<unit>

                                                                                                                  @@ -1479,19 +1243,24 @@

                                                                                                                  -
                                                                                                                  -
                                                                                                                  -
                                                                                                                  + + + + +
                                                                                                                  +
                                                                                                                    +

                                                                                                                    Type something to start searching.

                                                                                                                    +
                                                                                                                    +
                                                                                                                    + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-js-jscell.html b/reference/fsspreadsheet-js-jscell.html index 73124e88..02fc5224 100644 --- a/reference/fsspreadsheet-js-jscell.html +++ b/reference/fsspreadsheet-js-jscell.html @@ -1,62 +1,50 @@ - - + - - JsCell (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                    -
                                                                                                                    - +
                                                                                                                    -
                                                                                                                    -
                                                                                                                    -
                                                                                                                    - +
                                                                                                                    + + + + + +
                                                                                                                    + + +
                                                                                                                    +
                                                                                                                    +

                                                                                                                    JsCell Module

                                                                                                                    @@ -164,7 +183,7 @@

                                                                                                                    jsCell : - Cell + Cell - @@ -181,84 +200,85 @@

                                                                                                                    -
                                                                                                                    - - - - - - -

                                                                                                                    - +

                                                                                                                    + +
                                                                                                                    + + + + + +

                                                                                                                    + `worksheetName`, `rowIndex` and `columnIndex` are only used for debugging. -

                                                                                                                    -
                                                                                                                    -
                                                                                                                    -
                                                                                                                    - - worksheetName - - : - string -
                                                                                                                    -
                                                                                                                    -

                                                                                                                    - -

                                                                                                                    -
                                                                                                                    -
                                                                                                                    - - rowIndex - - : - int -
                                                                                                                    -
                                                                                                                    -

                                                                                                                    - -

                                                                                                                    -
                                                                                                                    -
                                                                                                                    - - columnIndex - - : - int -
                                                                                                                    -
                                                                                                                    -

                                                                                                                    - -

                                                                                                                    -
                                                                                                                    -
                                                                                                                    - - jsCell - - : - Cell -
                                                                                                                    -
                                                                                                                    -

                                                                                                                    - -

                                                                                                                    -
                                                                                                                    -
                                                                                                                    -
                                                                                                                    -
                                                                                                                    - - Returns: - - FsCell -
                                                                                                                    -
                                                                                                                    -
                                                                                                                    +

                                                                                                                    +
                                                                                                                    + +
                                                                                                                    +
                                                                                                                    + + worksheetName + + : + string +
                                                                                                                    +
                                                                                                                    +

                                                                                                                    + +

                                                                                                                    +
                                                                                                                    +
                                                                                                                    + + rowIndex + + : + int +
                                                                                                                    +
                                                                                                                    +

                                                                                                                    + +

                                                                                                                    +
                                                                                                                    +
                                                                                                                    + + columnIndex + + : + int +
                                                                                                                    +
                                                                                                                    +

                                                                                                                    + +

                                                                                                                    +
                                                                                                                    +
                                                                                                                    + + jsCell + + : + Cell +
                                                                                                                    +
                                                                                                                    +

                                                                                                                    + +

                                                                                                                    +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    + + Returns: + + FsCell +
                                                                                                                    +
                                                                                                                    +
                                                                                                                    + @@ -301,23 +321,6 @@

                                                                                                                    -
                                                                                                                    - - - - - - -

                                                                                                                    - -

                                                                                                                    -
                                                                                                                    @@ -351,19 +354,24 @@

                                                                                                                    -
                                                                                                                    -
                                                                                                                    -
                                                                                                                    + + + + +
                                                                                                                    +
                                                                                                                      +

                                                                                                                      Type something to start searching.

                                                                                                                      +
                                                                                                                      +
                                                                                                                      + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-js-json.html b/reference/fsspreadsheet-js-json.html index 48aa8a59..d8dca556 100644 --- a/reference/fsspreadsheet-js-json.html +++ b/reference/fsspreadsheet-js-json.html @@ -1,62 +1,50 @@ - - + - - Json (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                      -
                                                                                                                      - +
                                                                                                                      -
                                                                                                                      -
                                                                                                                      -
                                                                                                                      - +
                                                                                                                      + + + + + +
                                                                                                                      + + +
                                                                                                                      +
                                                                                                                      +

                                                                                                                      Json Type

                                                                                                                      @@ -93,10 +112,8 @@

                                                                                                                      - - This does currently not correctly work if you want to use this from js + This does currently not correctly work if you want to use this from js https://github.com/fable-compiler/Fable/issues/3498 -

                                                                                                                      @@ -127,7 +144,7 @@

                                                                                                                      - +

                                                                                                                      @@ -136,7 +153,7 @@

                                                                                                                      -
                                                                                                                      +
                                                                                                                      Full Usage: Json.fromColumnsJsonString json @@ -164,23 +181,6 @@

                                                                                                                      -
                                                                                                                      - - - - - - -

                                                                                                                      - -

                                                                                                                      -
                                                                                                                      @@ -205,7 +205,7 @@

                                                                                                                      - +

                                                                                                                      @@ -214,7 +214,7 @@

                                                                                                                      -
                                                                                                                      +
                                                                                                                      Full Usage: Json.fromRowsJsonString json @@ -242,23 +242,6 @@

                                                                                                                      -
                                                                                                                      - - - - - - -

                                                                                                                      - -

                                                                                                                      -
                                                                                                                      @@ -283,7 +266,7 @@

                                                                                                                      - +

                                                                                                                      @@ -292,7 +275,7 @@

                                                                                                                      -
                                                                                                                      +
                                                                                                                      Full Usage: Json.toColumnsJsonString (wb, ?spaces, ?noNumbering) @@ -336,23 +319,6 @@

                                                                                                                      -
                                                                                                                      - - - - - - -

                                                                                                                      - -

                                                                                                                      -
                                                                                                                      @@ -393,7 +359,7 @@

                                                                                                                      - +

                                                                                                                      @@ -402,7 +368,7 @@

                                                                                                                      -
                                                                                                                      +
                                                                                                                      Full Usage: Json.toRowsJsonString (wb, ?spaces, ?noNumbering) @@ -446,23 +412,6 @@

                                                                                                                      -
                                                                                                                      - - - - - - -

                                                                                                                      - -

                                                                                                                      -
                                                                                                                      @@ -503,7 +452,7 @@

                                                                                                                      - +

                                                                                                                      @@ -512,7 +461,7 @@

                                                                                                                      -
                                                                                                                      +
                                                                                                                      Full Usage: Json.tryFromColumnsJsonString json @@ -540,23 +489,6 @@

                                                                                                                      -
                                                                                                                      - - - - - - -

                                                                                                                      - -

                                                                                                                      -
                                                                                                                      @@ -581,7 +513,7 @@

                                                                                                                      - +

                                                                                                                      @@ -590,7 +522,7 @@

                                                                                                                      -
                                                                                                                      +
                                                                                                                      Full Usage: Json.tryFromRowsJsonString json @@ -618,23 +550,6 @@

                                                                                                                      -
                                                                                                                      - - - - - - -

                                                                                                                      - -

                                                                                                                      -
                                                                                                                      @@ -660,19 +575,24 @@

                                                                                                                      -

                                                                                                                      -

                                                                                                                      -

                                                                                                                      +

                                                                                                                      + + + +
                                                                                                                      +
                                                                                                                        +

                                                                                                                        Type something to start searching.

                                                                                                                        +
                                                                                                                        +
                                                                                                                        + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-js-jstable.html b/reference/fsspreadsheet-js-jstable.html index 7598cc2c..226081b2 100644 --- a/reference/fsspreadsheet-js-jstable.html +++ b/reference/fsspreadsheet-js-jstable.html @@ -1,62 +1,50 @@ - - + - - JsTable (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                        -
                                                                                                                        - +
                                                                                                                        -
                                                                                                                        -
                                                                                                                        -
                                                                                                                        - +
                                                                                                                        + + + + + +
                                                                                                                        + + +
                                                                                                                        +
                                                                                                                        +

                                                                                                                        JsTable Module

                                                                                                                        @@ -134,7 +153,7 @@

                                                                                                                        table : - ITableRef + ITableRef
                                                                                                                        @@ -149,30 +168,13 @@

                                                                                                                        -
                                                                                                                        - - - - - - -

                                                                                                                        - -

                                                                                                                        -
                                                                                                                        table : - ITableRef + ITableRef
                                                                                                                        @@ -227,7 +229,7 @@


                                                                                                                        Returns: - Table + Table

                                                                                                                        @@ -235,23 +237,6 @@

                                                                                                                        -
                                                                                                                        - - - - - - -

                                                                                                                        - -

                                                                                                                        -
                                                                                                                        @@ -275,7 +260,7 @@

                                                                                                                        Returns: - Table + Table

                                                                                                                        @@ -293,19 +278,24 @@

                                                                                                                        -
                                                                                                                        -
                                                                                                                        -
                                                                                                                        + + + + +
                                                                                                                        +
                                                                                                                          +

                                                                                                                          Type something to start searching.

                                                                                                                          +
                                                                                                                          +
                                                                                                                          + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-js-jsworkbook.html b/reference/fsspreadsheet-js-jsworkbook.html index 53aff197..2d50818f 100644 --- a/reference/fsspreadsheet-js-jsworkbook.html +++ b/reference/fsspreadsheet-js-jsworkbook.html @@ -1,62 +1,50 @@ - - + - - JsWorkbook (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                          -
                                                                                                                          - +
                                                                                                                          -
                                                                                                                          -
                                                                                                                          -
                                                                                                                          - +
                                                                                                                          + + + + + +
                                                                                                                          + + +
                                                                                                                          +
                                                                                                                          +

                                                                                                                          JsWorkbook Module

                                                                                                                          @@ -134,7 +153,7 @@

                                                                                                                          jswb : - Workbook + Workbook
                                                                                                                          @@ -149,30 +168,13 @@

                                                                                                                          -
                                                                                                                          - - - - - - -

                                                                                                                          - -

                                                                                                                          -
                                                                                                                          jswb : - Workbook + Workbook
                                                                                                                          @@ -219,7 +221,7 @@


                                                                                                                          Returns: - Workbook + Workbook

                                                                                                                          @@ -227,23 +229,6 @@

                                                                                                                          -
                                                                                                                          - - - - - - -

                                                                                                                          - -

                                                                                                                          -
                                                                                                                          @@ -259,7 +244,7 @@

                                                                                                                          Returns: - Workbook + Workbook

                                                                                                                          @@ -277,19 +262,24 @@

                                                                                                                          -
                                                                                                                          -
                                                                                                                          -
                                                                                                                          + + + + +
                                                                                                                          +
                                                                                                                            +

                                                                                                                            Type something to start searching.

                                                                                                                            +
                                                                                                                            +
                                                                                                                            + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-js-jsworksheet.html b/reference/fsspreadsheet-js-jsworksheet.html index 491c0b35..d5770d27 100644 --- a/reference/fsspreadsheet-js-jsworksheet.html +++ b/reference/fsspreadsheet-js-jsworksheet.html @@ -1,62 +1,50 @@ - - + - - JsWorksheet (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                            -
                                                                                                                            - +
                                                                                                                            -
                                                                                                                            -
                                                                                                                            -
                                                                                                                            - +
                                                                                                                            + + + + + +
                                                                                                                            + + +
                                                                                                                            +
                                                                                                                            +

                                                                                                                            JsWorksheet Module

                                                                                                                            @@ -142,7 +161,7 @@

                                                                                                                            jsws : - Worksheet + Worksheet
                                                                                                                            @@ -152,23 +171,6 @@

                                                                                                                            -
                                                                                                                            - - - - - - -

                                                                                                                            - -

                                                                                                                            -
                                                                                                                            @@ -183,7 +185,7 @@

                                                                                                                            jsws : - Worksheet + Worksheet

                                                                                                                            @@ -214,7 +216,7 @@

                                                                                                                            wb : - Workbook + Workbook
                                                                                                                            @@ -232,30 +234,13 @@

                                                                                                                            -
                                                                                                                            - - - - - - -

                                                                                                                            - -

                                                                                                                            -
                                                                                                                            wb : - Workbook + Workbook
                                                                                                                            @@ -281,19 +266,24 @@

                                                                                                                            -
                                                                                                                            -
                                                                                                                            -
                                                                                                                            + + + + +
                                                                                                                            +
                                                                                                                              +

                                                                                                                              Type something to start searching.

                                                                                                                              +
                                                                                                                              +
                                                                                                                              + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-js-xlsx.html b/reference/fsspreadsheet-js-xlsx.html index fa214959..26130a18 100644 --- a/reference/fsspreadsheet-js-xlsx.html +++ b/reference/fsspreadsheet-js-xlsx.html @@ -1,62 +1,50 @@ - - + - - Xlsx (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                              -
                                                                                                                              - +
                                                                                                                              -
                                                                                                                              -
                                                                                                                              -
                                                                                                                              - +
                                                                                                                              + + + + + +
                                                                                                                              + + +
                                                                                                                              +
                                                                                                                              +

                                                                                                                              Xlsx Type

                                                                                                                              @@ -93,10 +112,8 @@

                                                                                                                              - - This does currently not correctly work if you want to use this from js + This does currently not correctly work if you want to use this from js https://github.com/fable-compiler/Fable/issues/3498 -

                                                                                                                              @@ -127,7 +144,7 @@

                                                                                                                              - +

                                                                                                                              @@ -136,7 +153,7 @@

                                                                                                                              -
                                                                                                                              +
                                                                                                                              Full Usage: Xlsx.fromXlsxBytes bytes @@ -156,7 +173,7 @@


                                                                                                                              Returns: - Promise<FsWorkbook> + Promise<FsWorkbook>

                                                                                                                              @@ -164,23 +181,6 @@

                                                                                                                              -
                                                                                                                              - - - - - - -

                                                                                                                              - -

                                                                                                                              -
                                                                                                                              @@ -196,7 +196,7 @@

                                                                                                                              Returns: - Promise<FsWorkbook> + Promise<FsWorkbook>

                                                                                                                              @@ -205,7 +205,7 @@

                                                                                                                              - +

                                                                                                                              @@ -214,7 +214,7 @@

                                                                                                                              -
                                                                                                                              +
                                                                                                                              Full Usage: Xlsx.fromXlsxFile path @@ -234,7 +234,7 @@


                                                                                                                              Returns: - Promise<FsWorkbook> + Promise<FsWorkbook>

                                                                                                                              @@ -242,23 +242,6 @@

                                                                                                                              -
                                                                                                                              - - - - - - -

                                                                                                                              - -

                                                                                                                              -
                                                                                                                              @@ -274,7 +257,7 @@

                                                                                                                              Returns: - Promise<FsWorkbook> + Promise<FsWorkbook>

                                                                                                                              @@ -283,7 +266,7 @@

                                                                                                                              - +

                                                                                                                              @@ -292,7 +275,7 @@

                                                                                                                              -
                                                                                                                              +
                                                                                                                              Full Usage: Xlsx.fromXlsxStream stream @@ -305,14 +288,14 @@

                                                                                                                              stream : - Stream + Stream

                                                                                                                              Returns: - Promise<FsWorkbook> + Promise<FsWorkbook>

                                                                                                                              @@ -320,30 +303,13 @@

                                                                                                                              -
                                                                                                                              - - - - - - -

                                                                                                                              - -

                                                                                                                              -
                                                                                                                              stream : - Stream + Stream
                                                                                                                              @@ -352,7 +318,7 @@

                                                                                                                              Returns: - Promise<FsWorkbook> + Promise<FsWorkbook>
                                                                                                                              @@ -361,7 +327,7 @@

                                                                                                                              - +

                                                                                                                              @@ -370,7 +336,7 @@

                                                                                                                              -
                                                                                                                              +
                                                                                                                              Full Usage: Xlsx.toXlsxBytes wb @@ -390,7 +356,7 @@


                                                                                                                              Returns: - Promise<byte[]> + Promise<byte[]>

                                                                                                                              @@ -398,23 +364,6 @@

                                                                                                                              -
                                                                                                                              - - - - - - -

                                                                                                                              - -

                                                                                                                              -
                                                                                                                              @@ -430,7 +379,7 @@

                                                                                                                              Returns: - Promise<byte[]> + Promise<byte[]>

                                                                                                                              @@ -439,7 +388,7 @@

                                                                                                                              - +

                                                                                                                              @@ -448,7 +397,7 @@

                                                                                                                              -
                                                                                                                              +
                                                                                                                              Full Usage: Xlsx.toXlsxFile path wb @@ -476,7 +425,7 @@


                                                                                                                              Returns: - Promise<unit> + Promise<unit>

                                                                                                                              @@ -484,23 +433,6 @@

                                                                                                                              -
                                                                                                                              - - - - - - -

                                                                                                                              - -

                                                                                                                              -
                                                                                                                              @@ -524,7 +456,7 @@

                                                                                                                              Returns: - Promise<unit> + Promise<unit>

                                                                                                                              @@ -533,7 +465,7 @@

                                                                                                                              - +

                                                                                                                              @@ -542,7 +474,7 @@

                                                                                                                              -
                                                                                                                              +
                                                                                                                              Full Usage: Xlsx.toXlsxStream stream wb @@ -555,7 +487,7 @@

                                                                                                                              stream : - Stream + Stream
                                                                                                                              @@ -570,7 +502,7 @@


                                                                                                                              Returns: - Promise<unit> + Promise<unit>

                                                                                                                              @@ -578,30 +510,13 @@

                                                                                                                              -
                                                                                                                              - - - - - - -

                                                                                                                              - -

                                                                                                                              -
                                                                                                                              stream : - Stream + Stream
                                                                                                                              @@ -618,7 +533,7 @@

                                                                                                                              Returns: - Promise<unit> + Promise<unit>

                                                                                                                              @@ -628,19 +543,24 @@

                                                                                                                              -

                                                                                                                              -

                                                                                                                              -

                                                                                                                              +

                                                                                                                              + + + +
                                                                                                                              +
                                                                                                                                +

                                                                                                                                Type something to start searching.

                                                                                                                                +
                                                                                                                                +
                                                                                                                                + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-js.html b/reference/fsspreadsheet-js.html index 970e5e56..c4bbaf75 100644 --- a/reference/fsspreadsheet-js.html +++ b/reference/fsspreadsheet-js.html @@ -1,62 +1,50 @@ - - + - - FsSpreadsheet.Js - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                -
                                                                                                                                - +
                                                                                                                                -
                                                                                                                                -
                                                                                                                                -
                                                                                                                                - +
                                                                                                                                + + + + + +
                                                                                                                                + + +
                                                                                                                                +
                                                                                                                                +

                                                                                                                                FsSpreadsheet.Js Namespace

                                                                                                                                @@ -101,16 +120,13 @@

                                                                                                                                - - +

                                                                                                                                @@ -131,16 +147,13 @@

                                                                                                                                - - - + +

                                                                                                                                @@ -161,22 +174,17 @@

                                                                                                                                - - - + +

                                                                                                                                - - This does currently not correctly work if you want to use this from js + This does currently not correctly work if you want to use this from js https://github.com/fable-compiler/Fable/issues/3498 -

                                                                                                                                @@ -194,16 +202,13 @@

                                                                                                                                - - +

                                                                                                                                @@ -224,16 +229,13 @@

                                                                                                                                - - +

                                                                                                                                @@ -254,16 +256,13 @@

                                                                                                                                - - - + +

                                                                                                                                @@ -284,22 +283,17 @@

                                                                                                                                - - +

                                                                                                                                - - This does currently not correctly work if you want to use this from js + This does currently not correctly work if you want to use this from js https://github.com/fable-compiler/Fable/issues/3498 -

                                                                                                                                @@ -307,19 +301,24 @@

                                                                                                                                -

                                                                                                                                -

                                                                                                                                -

                                                                                                                                +

                                                                                                                                + + + +
                                                                                                                                +
                                                                                                                                  +

                                                                                                                                  Type something to start searching.

                                                                                                                                  +
                                                                                                                                  +
                                                                                                                                  + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-json-cell.html b/reference/fsspreadsheet-json-cell.html index 50d9cea8..c7ef0567 100644 --- a/reference/fsspreadsheet-json-cell.html +++ b/reference/fsspreadsheet-json-cell.html @@ -1,62 +1,50 @@ - - + - - Cell (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                  -
                                                                                                                                  - +
                                                                                                                                  -
                                                                                                                                  -
                                                                                                                                  -
                                                                                                                                  - +
                                                                                                                                  + + + + + +
                                                                                                                                  + + +
                                                                                                                                  +
                                                                                                                                  +

                                                                                                                                  Cell Module

                                                                                                                                  @@ -137,23 +156,6 @@

                                                                                                                                  -
                                                                                                                                  - - - - - - -

                                                                                                                                  - -

                                                                                                                                  -
                                                                                                                                  @@ -197,7 +199,7 @@


                                                                                                                                  Returns: - Decoder<FsCell> + Decoder<FsCell>

                                                                                                                                  @@ -205,23 +207,6 @@

                                                                                                                                  -
                                                                                                                                  - - - - - - -

                                                                                                                                  - -

                                                                                                                                  -
                                                                                                                                  @@ -237,7 +222,7 @@

                                                                                                                                  Returns: - Decoder<FsCell> + Decoder<FsCell>

                                                                                                                                  @@ -275,7 +260,7 @@


                                                                                                                                  Returns: - Decoder<FsCell> + Decoder<FsCell>

                                                                                                                                  @@ -283,23 +268,6 @@

                                                                                                                                  -
                                                                                                                                  - - - - - - -

                                                                                                                                  - -

                                                                                                                                  -
                                                                                                                                  @@ -315,7 +283,7 @@

                                                                                                                                  Returns: - Decoder<FsCell> + Decoder<FsCell>

                                                                                                                                  @@ -353,7 +321,7 @@


                                                                                                                                  Returns: - IEncodable + Json

                                                                                                                                  @@ -361,23 +329,6 @@

                                                                                                                                  -
                                                                                                                                  - - - - - - -

                                                                                                                                  - -

                                                                                                                                  -
                                                                                                                                  @@ -393,7 +344,7 @@

                                                                                                                                  Returns: - IEncodable + Json

                                                                                                                                  @@ -431,7 +382,7 @@


                                                                                                                                  Returns: - IEncodable + Json

                                                                                                                                  @@ -439,23 +390,6 @@

                                                                                                                                  -
                                                                                                                                  - - - - - - -

                                                                                                                                  - -

                                                                                                                                  -
                                                                                                                                  @@ -471,7 +405,7 @@

                                                                                                                                  Returns: - IEncodable + Json

                                                                                                                                  @@ -509,7 +443,7 @@


                                                                                                                                  Returns: - IEncodable + Json

                                                                                                                                  @@ -517,23 +451,6 @@

                                                                                                                                  -
                                                                                                                                  - - - - - - -

                                                                                                                                  - -

                                                                                                                                  -
                                                                                                                                  @@ -549,7 +466,7 @@

                                                                                                                                  Returns: - IEncodable + Json

                                                                                                                                  @@ -583,23 +500,6 @@

                                                                                                                                  -
                                                                                                                                  - - - - - - -

                                                                                                                                  - -

                                                                                                                                  -
                                                                                                                                  @@ -639,23 +539,6 @@

                                                                                                                                  -
                                                                                                                                  - - - - - - -

                                                                                                                                  - -

                                                                                                                                  -
                                                                                                                                  @@ -679,19 +562,24 @@

                                                                                                                                  -
                                                                                                                                  -
                                                                                                                                  -
                                                                                                                                  + + + + +
                                                                                                                                  +
                                                                                                                                    +

                                                                                                                                    Type something to start searching.

                                                                                                                                    +
                                                                                                                                    +
                                                                                                                                    + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-json-column.html b/reference/fsspreadsheet-json-column.html index 26f77ecf..b6577474 100644 --- a/reference/fsspreadsheet-json-column.html +++ b/reference/fsspreadsheet-json-column.html @@ -1,62 +1,50 @@ - - + - - Column (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                    -
                                                                                                                                    - +
                                                                                                                                    -
                                                                                                                                    -
                                                                                                                                    -
                                                                                                                                    - +
                                                                                                                                    + + + + + +
                                                                                                                                    + + +
                                                                                                                                    +
                                                                                                                                    +

                                                                                                                                    Column Module

                                                                                                                                    @@ -137,23 +156,6 @@

                                                                                                                                    -
                                                                                                                                    - - - - - - -

                                                                                                                                    - -

                                                                                                                                    -
                                                                                                                                    @@ -185,7 +187,7 @@


                                                                                                                                    Returns: - Decoder<int option * seq<FsCell>> + Decoder<int option * FsCell seq>

                                                                                                                                    @@ -193,29 +195,12 @@

                                                                                                                                    -
                                                                                                                                    - - - - - - -

                                                                                                                                    - -

                                                                                                                                    -
                                                                                                                                    Returns: - Decoder<int option * seq<FsCell>> + Decoder<int option * FsCell seq>
                                                                                                                                    @@ -253,7 +238,7 @@


                                                                                                                                    Returns: - IEncodable + Json

                                                                                                                                    @@ -261,23 +246,6 @@

                                                                                                                                    -
                                                                                                                                    - - - - - - -

                                                                                                                                    - -

                                                                                                                                    -
                                                                                                                                    @@ -293,7 +261,7 @@

                                                                                                                                    Returns: - IEncodable + Json

                                                                                                                                    @@ -324,14 +292,14 @@

                                                                                                                                    col : - seq<FsCell> + FsCell seq

                                                                                                                                    Returns: - IEncodable + Json

                                                                                                                                    @@ -339,30 +307,13 @@

                                                                                                                                    -
                                                                                                                                    - - - - - - -

                                                                                                                                    - -

                                                                                                                                    -
                                                                                                                                    col : - seq<FsCell> + FsCell seq
                                                                                                                                    @@ -371,7 +322,7 @@

                                                                                                                                    Returns: - IEncodable + Json
                                                                                                                                    @@ -405,23 +356,6 @@

                                                                                                                                    -
                                                                                                                                    - - - - - - -

                                                                                                                                    - -

                                                                                                                                    -
                                                                                                                                    @@ -445,19 +379,24 @@

                                                                                                                                    -
                                                                                                                                    -
                                                                                                                                    -
                                                                                                                                    + + + + +
                                                                                                                                    +
                                                                                                                                      +

                                                                                                                                      Type something to start searching.

                                                                                                                                      +
                                                                                                                                      +
                                                                                                                                      + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-json-row.html b/reference/fsspreadsheet-json-row.html index 276ef8ae..bbb3f02c 100644 --- a/reference/fsspreadsheet-json-row.html +++ b/reference/fsspreadsheet-json-row.html @@ -1,62 +1,50 @@ - - + - - Row (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                      -
                                                                                                                                      - +
                                                                                                                                      -
                                                                                                                                      -
                                                                                                                                      -
                                                                                                                                      - +
                                                                                                                                      + + + + + +
                                                                                                                                      + + +
                                                                                                                                      +
                                                                                                                                      +

                                                                                                                                      Row Module

                                                                                                                                      @@ -137,23 +156,6 @@

                                                                                                                                      -
                                                                                                                                      - - - - - - -

                                                                                                                                      - -

                                                                                                                                      -
                                                                                                                                      @@ -185,7 +187,7 @@


                                                                                                                                      Returns: - Decoder<int option * seq<FsCell>> + Decoder<int option * FsCell seq>

                                                                                                                                      @@ -193,29 +195,12 @@

                                                                                                                                      -
                                                                                                                                      - - - - - - -

                                                                                                                                      - -

                                                                                                                                      -
                                                                                                                                      Returns: - Decoder<int option * seq<FsCell>> + Decoder<int option * FsCell seq>
                                                                                                                                      @@ -253,7 +238,7 @@


                                                                                                                                      Returns: - IEncodable + Json

                                                                                                                                      @@ -261,23 +246,6 @@

                                                                                                                                      -
                                                                                                                                      - - - - - - -

                                                                                                                                      - -

                                                                                                                                      -
                                                                                                                                      @@ -293,7 +261,7 @@

                                                                                                                                      Returns: - IEncodable + Json

                                                                                                                                      @@ -324,14 +292,14 @@

                                                                                                                                      row : - seq<FsCell> + FsCell seq

                                                                                                                                      Returns: - IEncodable + Json

                                                                                                                                      @@ -339,30 +307,13 @@

                                                                                                                                      -
                                                                                                                                      - - - - - - -

                                                                                                                                      - -

                                                                                                                                      -
                                                                                                                                      row : - seq<FsCell> + FsCell seq
                                                                                                                                      @@ -371,7 +322,7 @@

                                                                                                                                      Returns: - IEncodable + Json
                                                                                                                                      @@ -405,23 +356,6 @@

                                                                                                                                      -
                                                                                                                                      - - - - - - -

                                                                                                                                      - -

                                                                                                                                      -
                                                                                                                                      @@ -445,19 +379,24 @@

                                                                                                                                      -
                                                                                                                                      -
                                                                                                                                      -
                                                                                                                                      + + + + +
                                                                                                                                      +
                                                                                                                                        +

                                                                                                                                        Type something to start searching.

                                                                                                                                        +
                                                                                                                                        +
                                                                                                                                        + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-json-table.html b/reference/fsspreadsheet-json-table.html index 97bd8c7c..e544a510 100644 --- a/reference/fsspreadsheet-json-table.html +++ b/reference/fsspreadsheet-json-table.html @@ -1,62 +1,50 @@ - - + - - Table (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                        -
                                                                                                                                        - +
                                                                                                                                        -
                                                                                                                                        -
                                                                                                                                        -
                                                                                                                                        - +
                                                                                                                                        + + + + + +
                                                                                                                                        + + +
                                                                                                                                        +
                                                                                                                                        +

                                                                                                                                        Table Module

                                                                                                                                        @@ -129,7 +148,7 @@


                                                                                                                                        Returns: - Decoder<FsTable> + Decoder<FsTable>

                                                                                                                                        @@ -137,29 +156,12 @@

                                                                                                                                        -
                                                                                                                                        - - - - - - -

                                                                                                                                        - -

                                                                                                                                        -
                                                                                                                                        Returns: - Decoder<FsTable> + Decoder<FsTable>
                                                                                                                                        @@ -197,7 +199,7 @@


                                                                                                                                        Returns: - IEncodable + Json

                                                                                                                                        @@ -205,23 +207,6 @@

                                                                                                                                        -
                                                                                                                                        - - - - - - -

                                                                                                                                        - -

                                                                                                                                        -
                                                                                                                                        @@ -237,7 +222,7 @@

                                                                                                                                        Returns: - IEncodable + Json

                                                                                                                                        @@ -271,23 +256,6 @@

                                                                                                                                        -
                                                                                                                                        - - - - - - -

                                                                                                                                        - -

                                                                                                                                        -
                                                                                                                                        @@ -327,23 +295,6 @@

                                                                                                                                        -
                                                                                                                                        - - - - - - -

                                                                                                                                        - -

                                                                                                                                        -
                                                                                                                                        @@ -367,19 +318,24 @@

                                                                                                                                        -
                                                                                                                                        -
                                                                                                                                        -
                                                                                                                                        + + + + +
                                                                                                                                        +
                                                                                                                                          +

                                                                                                                                          Type something to start searching.

                                                                                                                                          +
                                                                                                                                          +
                                                                                                                                          + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-json-value-decode.html b/reference/fsspreadsheet-json-value-decode.html index 78da46c7..7dcba30f 100644 --- a/reference/fsspreadsheet-json-value-decode.html +++ b/reference/fsspreadsheet-json-value-decode.html @@ -1,62 +1,50 @@ - - + - - Decode (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                          -
                                                                                                                                          - +
                                                                                                                                          -
                                                                                                                                          -
                                                                                                                                          -
                                                                                                                                          - +
                                                                                                                                          + + + + + +
                                                                                                                                          + + +
                                                                                                                                          +
                                                                                                                                          +

                                                                                                                                          Decode Module

                                                                                                                                          @@ -135,7 +154,7 @@


                                                                                                                                          Returns: - Decoder<DateTime> + Decoder<DateTime>

                                                                                                                                          @@ -143,29 +162,12 @@

                                                                                                                                          -
                                                                                                                                          - - - - - - -

                                                                                                                                          - -

                                                                                                                                          -
                                                                                                                                          Returns: - Decoder<DateTime> + Decoder<DateTime>
                                                                                                                                          @@ -183,19 +185,24 @@

                                                                                                                                          -
                                                                                                                                          -
                                                                                                                                          -
                                                                                                                                          + + + + +
                                                                                                                                          +
                                                                                                                                            +

                                                                                                                                            Type something to start searching.

                                                                                                                                            +
                                                                                                                                            +
                                                                                                                                            + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-json-value.html b/reference/fsspreadsheet-json-value.html index b3cfc69d..f0e7bc80 100644 --- a/reference/fsspreadsheet-json-value.html +++ b/reference/fsspreadsheet-json-value.html @@ -1,62 +1,50 @@ - - + - - Value (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                            -
                                                                                                                                            - +
                                                                                                                                            -
                                                                                                                                            -
                                                                                                                                            -
                                                                                                                                            - +
                                                                                                                                            + + + + + +
                                                                                                                                            + + +
                                                                                                                                            +
                                                                                                                                            +

                                                                                                                                            Value Module

                                                                                                                                            @@ -122,16 +141,13 @@

                                                                                                                                            - - +

                                                                                                                                            @@ -178,7 +194,7 @@


                                                                                                                                            Returns: - Decoder<obj * DataType> + Decoder<obj * DataType>

                                                                                                                                            @@ -186,29 +202,12 @@

                                                                                                                                            -
                                                                                                                                            - - - - - - -

                                                                                                                                            - -

                                                                                                                                            -
                                                                                                                                            Returns: - Decoder<obj * DataType> + Decoder<obj * DataType>
                                                                                                                                            @@ -246,7 +245,7 @@


                                                                                                                                            Returns: - IEncodable + Json

                                                                                                                                            @@ -254,23 +253,6 @@

                                                                                                                                            -
                                                                                                                                            - - - - - - -

                                                                                                                                            - -

                                                                                                                                            -
                                                                                                                                            @@ -286,7 +268,7 @@

                                                                                                                                            Returns: - IEncodable + Json

                                                                                                                                            @@ -304,19 +286,24 @@

                                                                                                                                            -
                                                                                                                                            -
                                                                                                                                            -
                                                                                                                                            + + + + +
                                                                                                                                            +
                                                                                                                                              +

                                                                                                                                              Type something to start searching.

                                                                                                                                              +
                                                                                                                                              +
                                                                                                                                              + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-json-workbook.html b/reference/fsspreadsheet-json-workbook.html index 1a1f2080..c688190f 100644 --- a/reference/fsspreadsheet-json-workbook.html +++ b/reference/fsspreadsheet-json-workbook.html @@ -1,62 +1,50 @@ - - + - - Workbook (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                              -
                                                                                                                                              - +
                                                                                                                                              -
                                                                                                                                              -
                                                                                                                                              -
                                                                                                                                              - +
                                                                                                                                              + + + + + +
                                                                                                                                              + + +
                                                                                                                                              +
                                                                                                                                              +

                                                                                                                                              Workbook Module

                                                                                                                                              @@ -129,7 +148,7 @@


                                                                                                                                              Returns: - Decoder<FsWorkbook> + Decoder<FsWorkbook>

                                                                                                                                              @@ -137,29 +156,12 @@

                                                                                                                                              -
                                                                                                                                              - - - - - - -

                                                                                                                                              - -

                                                                                                                                              -
                                                                                                                                              Returns: - Decoder<FsWorkbook> + Decoder<FsWorkbook>
                                                                                                                                              @@ -185,7 +187,7 @@


                                                                                                                                              Returns: - Decoder<FsWorkbook> + Decoder<FsWorkbook>

                                                                                                                                              @@ -193,29 +195,12 @@

                                                                                                                                              -
                                                                                                                                              - - - - - - -

                                                                                                                                              - -

                                                                                                                                              -
                                                                                                                                              Returns: - Decoder<FsWorkbook> + Decoder<FsWorkbook>
                                                                                                                                              @@ -261,7 +246,7 @@


                                                                                                                                              Returns: - IEncodable + Json

                                                                                                                                              @@ -269,23 +254,6 @@

                                                                                                                                              -
                                                                                                                                              - - - - - - -

                                                                                                                                              - -

                                                                                                                                              -
                                                                                                                                              @@ -309,7 +277,7 @@

                                                                                                                                              Returns: - IEncodable + Json

                                                                                                                                              @@ -355,7 +323,7 @@


                                                                                                                                              Returns: - IEncodable + Json

                                                                                                                                              @@ -363,23 +331,6 @@

                                                                                                                                              -
                                                                                                                                              - - - - - - -

                                                                                                                                              - -

                                                                                                                                              -
                                                                                                                                              @@ -403,7 +354,7 @@

                                                                                                                                              Returns: - IEncodable + Json

                                                                                                                                              @@ -437,23 +388,6 @@

                                                                                                                                              -
                                                                                                                                              - - - - - - -

                                                                                                                                              - -

                                                                                                                                              -
                                                                                                                                              @@ -477,19 +411,24 @@

                                                                                                                                              -
                                                                                                                                              -
                                                                                                                                              -
                                                                                                                                              + + + + +
                                                                                                                                              +
                                                                                                                                                +

                                                                                                                                                Type something to start searching.

                                                                                                                                                +
                                                                                                                                                +
                                                                                                                                                + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-json-worksheet.html b/reference/fsspreadsheet-json-worksheet.html index 9f664abc..125e8122 100644 --- a/reference/fsspreadsheet-json-worksheet.html +++ b/reference/fsspreadsheet-json-worksheet.html @@ -1,62 +1,50 @@ - - + - - Worksheet (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                -
                                                                                                                                                - +
                                                                                                                                                -
                                                                                                                                                -
                                                                                                                                                -
                                                                                                                                                - +
                                                                                                                                                + + + + + +
                                                                                                                                                + + +
                                                                                                                                                +
                                                                                                                                                +

                                                                                                                                                Worksheet Module

                                                                                                                                                @@ -137,23 +156,6 @@

                                                                                                                                                -
                                                                                                                                                - - - - - - -

                                                                                                                                                - -

                                                                                                                                                -
                                                                                                                                                @@ -185,7 +187,7 @@


                                                                                                                                                Returns: - Decoder<FsWorksheet> + Decoder<FsWorksheet>

                                                                                                                                                @@ -193,29 +195,12 @@

                                                                                                                                                -
                                                                                                                                                - - - - - - -

                                                                                                                                                - -

                                                                                                                                                -
                                                                                                                                                Returns: - Decoder<FsWorksheet> + Decoder<FsWorksheet>
                                                                                                                                                @@ -241,7 +226,7 @@


                                                                                                                                                Returns: - Decoder<FsWorksheet> + Decoder<FsWorksheet>

                                                                                                                                                @@ -249,29 +234,12 @@

                                                                                                                                                -
                                                                                                                                                - - - - - - -

                                                                                                                                                - -

                                                                                                                                                -
                                                                                                                                                Returns: - Decoder<FsWorksheet> + Decoder<FsWorksheet>
                                                                                                                                                @@ -317,7 +285,7 @@


                                                                                                                                                Returns: - IEncodable + Json

                                                                                                                                                @@ -325,23 +293,6 @@

                                                                                                                                                -
                                                                                                                                                - - - - - - -

                                                                                                                                                - -

                                                                                                                                                -
                                                                                                                                                @@ -365,7 +316,7 @@

                                                                                                                                                Returns: - IEncodable + Json

                                                                                                                                                @@ -411,7 +362,7 @@


                                                                                                                                                Returns: - IEncodable + Json

                                                                                                                                                @@ -419,23 +370,6 @@

                                                                                                                                                -
                                                                                                                                                - - - - - - -

                                                                                                                                                - -

                                                                                                                                                -
                                                                                                                                                @@ -459,7 +393,7 @@

                                                                                                                                                Returns: - IEncodable + Json

                                                                                                                                                @@ -493,23 +427,6 @@

                                                                                                                                                -
                                                                                                                                                - - - - - - -

                                                                                                                                                - -

                                                                                                                                                -
                                                                                                                                                @@ -549,23 +466,6 @@

                                                                                                                                                -
                                                                                                                                                - - - - - - -

                                                                                                                                                - -

                                                                                                                                                -
                                                                                                                                                @@ -605,23 +505,6 @@

                                                                                                                                                -
                                                                                                                                                - - - - - - -

                                                                                                                                                - -

                                                                                                                                                -
                                                                                                                                                @@ -645,19 +528,24 @@

                                                                                                                                                -
                                                                                                                                                -
                                                                                                                                                -
                                                                                                                                                + + + + +
                                                                                                                                                +
                                                                                                                                                  +

                                                                                                                                                  Type something to start searching.

                                                                                                                                                  +
                                                                                                                                                  +
                                                                                                                                                  + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-json.html b/reference/fsspreadsheet-json.html index 284eb1dd..bc177abf 100644 --- a/reference/fsspreadsheet-json.html +++ b/reference/fsspreadsheet-json.html @@ -1,62 +1,50 @@ - - + - - FsSpreadsheet.Json - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                  -
                                                                                                                                                  - +
                                                                                                                                                  -
                                                                                                                                                  -
                                                                                                                                                  -
                                                                                                                                                  - +
                                                                                                                                                  + + + + + +
                                                                                                                                                  + + +
                                                                                                                                                  +
                                                                                                                                                  +

                                                                                                                                                  FsSpreadsheet.Json Namespace

                                                                                                                                                  @@ -101,16 +120,13 @@

                                                                                                                                                  - - +

                                                                                                                                                  @@ -131,16 +147,13 @@

                                                                                                                                                  - - +

                                                                                                                                                  @@ -161,16 +174,13 @@

                                                                                                                                                  - - +

                                                                                                                                                  @@ -191,16 +201,13 @@

                                                                                                                                                  - - +

                                                                                                                                                  @@ -221,16 +228,13 @@

                                                                                                                                                  - - +

                                                                                                                                                  @@ -251,16 +255,13 @@

                                                                                                                                                  - - +

                                                                                                                                                  @@ -281,16 +282,13 @@

                                                                                                                                                  - - +

                                                                                                                                                  @@ -301,19 +299,24 @@

                                                                                                                                                  -

                                                                                                                                                  -

                                                                                                                                                  -

                                                                                                                                                  +

                                                                                                                                                  + + + +
                                                                                                                                                  +
                                                                                                                                                    +

                                                                                                                                                    Type something to start searching.

                                                                                                                                                    +
                                                                                                                                                    +
                                                                                                                                                    + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-net-cell-cellvalue.html b/reference/fsspreadsheet-net-cell-cellvalue.html index a711621a..8c023750 100644 --- a/reference/fsspreadsheet-net-cell-cellvalue.html +++ b/reference/fsspreadsheet-net-cell-cellvalue.html @@ -1,62 +1,50 @@ - - + - - CellValue (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                    -
                                                                                                                                                    - +
                                                                                                                                                    -
                                                                                                                                                    -
                                                                                                                                                    -
                                                                                                                                                    - +
                                                                                                                                                    + + + + + +
                                                                                                                                                    + + +
                                                                                                                                                    +
                                                                                                                                                    +

                                                                                                                                                    CellValue Module

                                                                                                                                                    @@ -95,9 +114,7 @@

                                                                                                                                                    - - Functions for manipulating CellValues. - + Functions for manipulating CellValues.

                                                                                                                                                    @@ -149,7 +166,7 @@


                                                                                                                                                    Returns: - CellValue + CellValue

                                                                                                                                                    @@ -157,44 +174,43 @@

                                                                                                                                                    -
                                                                                                                                                    - - - - - - -

                                                                                                                                                    - - Create a new CellValue containing the given string. - -

                                                                                                                                                    -
                                                                                                                                                    -
                                                                                                                                                    -
                                                                                                                                                    - - value - - : - string -
                                                                                                                                                    -
                                                                                                                                                    -
                                                                                                                                                    -
                                                                                                                                                    -
                                                                                                                                                    - - Returns: - - CellValue -
                                                                                                                                                    -
                                                                                                                                                    -
                                                                                                                                                    +
                                                                                                                                                    + +
                                                                                                                                                    + + + + + +

                                                                                                                                                    + Create a new CellValue containing the given string. +

                                                                                                                                                    +
                                                                                                                                                    +
                                                                                                                                                    +
                                                                                                                                                    +
                                                                                                                                                    + + value + + : + string +
                                                                                                                                                    +
                                                                                                                                                    +
                                                                                                                                                    +
                                                                                                                                                    +
                                                                                                                                                    + + Returns: + + CellValue +
                                                                                                                                                    +
                                                                                                                                                    +
                                                                                                                                                    +
                                                                                                                                                    @@ -229,7 +245,7 @@


                                                                                                                                                    Returns: - CellValue + CellValue

                                                                                                                                                    @@ -237,44 +253,43 @@

                                                                                                                                                    -
                                                                                                                                                    - - - - - - -

                                                                                                                                                    - - Creates an empty CellValue. - -

                                                                                                                                                    -
                                                                                                                                                    -
                                                                                                                                                    -
                                                                                                                                                    - - () - - : - unit -
                                                                                                                                                    -
                                                                                                                                                    -
                                                                                                                                                    -
                                                                                                                                                    -
                                                                                                                                                    - - Returns: - - CellValue -
                                                                                                                                                    -
                                                                                                                                                    -
                                                                                                                                                    +
                                                                                                                                                    + +
                                                                                                                                                    + + + + + +

                                                                                                                                                    + Creates an empty CellValue. +

                                                                                                                                                    +
                                                                                                                                                    +
                                                                                                                                                    +
                                                                                                                                                    +
                                                                                                                                                    + + () + + : + unit +
                                                                                                                                                    +
                                                                                                                                                    +
                                                                                                                                                    +
                                                                                                                                                    +
                                                                                                                                                    + + Returns: + + CellValue +
                                                                                                                                                    +
                                                                                                                                                    +
                                                                                                                                                    +
                                                                                                                                                    @@ -302,7 +317,7 @@

                                                                                                                                                    cellValue : - CellValue + CellValue
                                                                                                                                                    @@ -317,44 +332,43 @@

                                                                                                                                                    -
                                                                                                                                                    - - - - - - -

                                                                                                                                                    - - Returns the value stored inside the CellValue. - -

                                                                                                                                                    -
                                                                                                                                                    -
                                                                                                                                                    -
                                                                                                                                                    - - cellValue - - : - CellValue -
                                                                                                                                                    -
                                                                                                                                                    -
                                                                                                                                                    -
                                                                                                                                                    -
                                                                                                                                                    - - Returns: - - string -
                                                                                                                                                    -
                                                                                                                                                    -
                                                                                                                                                    +
                                                                                                                                                    + +
                                                                                                                                                    + + + + + +

                                                                                                                                                    + Returns the value stored inside the CellValue. +

                                                                                                                                                    +
                                                                                                                                                    +
                                                                                                                                                    +
                                                                                                                                                    +
                                                                                                                                                    + + cellValue + + : + CellValue +
                                                                                                                                                    +
                                                                                                                                                    +
                                                                                                                                                    +
                                                                                                                                                    +
                                                                                                                                                    + + Returns: + + string +
                                                                                                                                                    +
                                                                                                                                                    +
                                                                                                                                                    +
                                                                                                                                                    @@ -390,7 +404,7 @@

                                                                                                                                                    cellValue : - CellValue + CellValue
                                                                                                                                                    @@ -400,43 +414,42 @@

                                                                                                                                                    -
                                                                                                                                                    - - - - - - -

                                                                                                                                                    - - Sets the value inside the CellValue. - -

                                                                                                                                                    -
                                                                                                                                                    -
                                                                                                                                                    -
                                                                                                                                                    - - value - - : - string -
                                                                                                                                                    -
                                                                                                                                                    -
                                                                                                                                                    - - cellValue - - : - CellValue -
                                                                                                                                                    -
                                                                                                                                                    -
                                                                                                                                                    +
                                                                                                                                                    + +
                                                                                                                                                    + + + + + +

                                                                                                                                                    + Sets the value inside the CellValue. +

                                                                                                                                                    +
                                                                                                                                                    +
                                                                                                                                                    +
                                                                                                                                                    +
                                                                                                                                                    + + value + + : + string +
                                                                                                                                                    +
                                                                                                                                                    +
                                                                                                                                                    + + cellValue + + : + CellValue +
                                                                                                                                                    +
                                                                                                                                                    +
                                                                                                                                                    +
                                                                                                                                                    @@ -451,19 +464,24 @@

                                                                                                                                                    -
                                                                                                                                                    -
                                                                                                                                                    -
                                                                                                                                                    + + + + +
                                                                                                                                                    +
                                                                                                                                                      +

                                                                                                                                                      Type something to start searching.

                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-net-cell.html b/reference/fsspreadsheet-net-cell.html index 04ccc4a2..1aa4f4f8 100644 --- a/reference/fsspreadsheet-net-cell.html +++ b/reference/fsspreadsheet-net-cell.html @@ -1,62 +1,50 @@ - - + - - Cell (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                      -
                                                                                                                                                      - +
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      - +
                                                                                                                                                      + + + + + +
                                                                                                                                                      + + +
                                                                                                                                                      +
                                                                                                                                                      +

                                                                                                                                                      Cell Module

                                                                                                                                                      @@ -89,9 +108,7 @@

                                                                                                                                                      - - Functions for creating and manipulating Cells. - + Functions for creating and manipulating Cells.

                                                                                                                                                      @@ -124,21 +141,16 @@

                                                                                                                                                      - - +

                                                                                                                                                      - - Functions for manipulating CellValues. - + Functions for manipulating CellValues.

                                                                                                                                                      @@ -187,7 +199,7 @@

                                                                                                                                                      cellValue : - CellValues + CellValues
                                                                                                                                                      @@ -202,47 +214,48 @@

                                                                                                                                                      -
                                                                                                                                                      - - - - - - -

                                                                                                                                                      - +

                                                                                                                                                      + +
                                                                                                                                                      + + + + + +

                                                                                                                                                      + Takes a CellValue and returns the appropriate DataType. +

                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +

                                                                                                                                                      + DataType is the FsSpreadsheet representation of the CellValue enum in OpenXml.

                                                                                                                                                      -
                                                                                                                                                      -

                                                                                                                                                      - DataType is the FsSpreadsheet representation of the CellValue enum in OpenXml. -

                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      - - cellValue - - : - CellValues -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      - - Returns: - - DataType -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + + cellValue + + : + CellValues +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + + Returns: + + DataType +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + @@ -270,7 +283,7 @@

                                                                                                                                                      dataType : - CellValues option + CellValues option
                                                                                                                                                      @@ -286,14 +299,14 @@

                                                                                                                                                      value : - CellValue + CellValue

                                                                                                                                                      Returns: - Cell + Cell

                                                                                                                                                      @@ -301,60 +314,59 @@

                                                                                                                                                      -
                                                                                                                                                      - - - - - - -

                                                                                                                                                      - - Creates a Cell from a CellValues type case, a "A1" style reference, and a CellValue containing the value string. - -

                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      - - dataType - - : - CellValues option -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      - - reference - - : - string -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      - - value - - : - CellValue -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      - - Returns: - - Cell -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      +
                                                                                                                                                      + +
                                                                                                                                                      + + + + + +

                                                                                                                                                      + Creates a Cell from a CellValues type case, a "A1" style reference, and a CellValue containing the value string. +

                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + + dataType + + : + CellValues option +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + + reference + + : + string +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + + value + + : + CellValue +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + + Returns: + + Cell +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      @@ -382,7 +394,7 @@

                                                                                                                                                      doc : - SpreadsheetDocument + SpreadsheetDocument
                                                                                                                                                      @@ -390,7 +402,7 @@

                                                                                                                                                      dataType : - CellValues option + CellValues option
                                                                                                                                                      @@ -406,7 +418,7 @@

                                                                                                                                                      cellFormat : - CellFormat + CellFormat
                                                                                                                                                      @@ -414,14 +426,14 @@

                                                                                                                                                      value : - CellValue + CellValue

                                                                                                                                                      Returns: - Cell + Cell

                                                                                                                                                      @@ -429,76 +441,75 @@

                                                                                                                                                      -
                                                                                                                                                      - - - - - - -

                                                                                                                                                      - - Creates a Cell from a CellValues type case, a "A1" style reference, and a CellValue containing the value string. - -

                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      - - doc - - : - SpreadsheetDocument -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      - - dataType - - : - CellValues option -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      - - reference - - : - string -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      - - cellFormat - - : - CellFormat -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      - - value - - : - CellValue -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      - - Returns: - - Cell -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      +
                                                                                                                                                      + +
                                                                                                                                                      + + + + + +

                                                                                                                                                      + Creates a Cell from a CellValues type case, a "A1" style reference, and a CellValue containing the value string. +

                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + + doc + + : + SpreadsheetDocument +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + + dataType + + : + CellValues option +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + + reference + + : + string +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + + cellFormat + + : + CellFormat +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + + value + + : + CellValue +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + + Returns: + + Cell +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      @@ -533,7 +544,7 @@


                                                                                                                                                      Returns: - Cell + Cell

                                                                                                                                                      @@ -541,44 +552,43 @@

                                                                                                                                                      -
                                                                                                                                                      - - - - - - -

                                                                                                                                                      - - Creates an empty Cell. - -

                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      - - () - - : - unit -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      - - Returns: - - Cell -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      +
                                                                                                                                                      + +
                                                                                                                                                      + + + + + +

                                                                                                                                                      + Creates an empty Cell. +

                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + + () + + : + unit +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + + Returns: + + Cell +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      @@ -606,7 +616,7 @@

                                                                                                                                                      sharedStringTable : - Option<SharedStringTable> + Option<SharedStringTable>
                                                                                                                                                      @@ -637,7 +647,7 @@


                                                                                                                                                      Returns: - Cell + Cell

                                                                                                                                                      @@ -645,68 +655,67 @@

                                                                                                                                                      -
                                                                                                                                                      - - - - - - -

                                                                                                                                                      - - Create a cell using a shared string table, also returns the updated shared string table. - -

                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      - - sharedStringTable - - : - Option<SharedStringTable> -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      - - columnIndex - - : - uint32 -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      - - rowIndex - - : - uint32 -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      - - value - - : - 'T -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      - - Returns: - - Cell -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      +
                                                                                                                                                      + +
                                                                                                                                                      + + + + + +

                                                                                                                                                      + Create a cell using a shared string table, also returns the updated shared string table. +

                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + + sharedStringTable + + : + Option<SharedStringTable> +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + + columnIndex + + : + uint32 +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + + rowIndex + + : + uint32 +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + + value + + : + 'T +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + + Returns: + + Cell +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      @@ -734,7 +743,7 @@

                                                                                                                                                      doc : - SpreadsheetDocument + SpreadsheetDocument
                                                                                                                                                      @@ -773,7 +782,7 @@


                                                                                                                                                      Returns: - Cell + Cell

                                                                                                                                                      @@ -781,76 +790,75 @@

                                                                                                                                                      -
                                                                                                                                                      - - - - - - -

                                                                                                                                                      - - Create a cell using a shared string table, also returns the updated shared string table. - -

                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      - - doc - - : - SpreadsheetDocument -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      - - columnIndex - - : - uint32 -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      - - rowIndex - - : - uint32 -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      - - value - - : - string -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      - - dataType - - : - DataType -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      - - Returns: - - Cell -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      +
                                                                                                                                                      + +
                                                                                                                                                      + + + + + +

                                                                                                                                                      + Create a cell using a shared string table, also returns the updated shared string table. +

                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + + doc + + : + SpreadsheetDocument +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + + columnIndex + + : + uint32 +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + + rowIndex + + : + uint32 +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + + value + + : + string +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + + dataType + + : + DataType +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + + Returns: + + Cell +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      @@ -878,7 +886,7 @@

                                                                                                                                                      doc : - SpreadsheetDocument + SpreadsheetDocument
                                                                                                                                                      @@ -909,30 +917,13 @@

                                                                                                                                                      -
                                                                                                                                                      - - - - - - -

                                                                                                                                                      - -

                                                                                                                                                      -
                                                                                                                                                      doc : - SpreadsheetDocument + SpreadsheetDocument
                                                                                                                                                      @@ -988,14 +979,14 @@

                                                                                                                                                      cell : - Cell + Cell

                                                                                                                                                      Returns: - CellValue + CellValue

                                                                                                                                                      @@ -1003,44 +994,43 @@

                                                                                                                                                      -
                                                                                                                                                      - - - - - - -

                                                                                                                                                      - - Gets the CellValue. - -

                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      - - cell - - : - Cell -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      - - Returns: - - CellValue -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      +
                                                                                                                                                      + +
                                                                                                                                                      + + + + + +

                                                                                                                                                      + Gets the CellValue. +

                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + + cell + + : + Cell +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + + Returns: + + CellValue +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      @@ -1068,7 +1058,7 @@

                                                                                                                                                      cell : - Cell + Cell
                                                                                                                                                      @@ -1083,44 +1073,43 @@

                                                                                                                                                      -
                                                                                                                                                      - - - - - - -

                                                                                                                                                      - - Gets "A1"-style Cell reference. - -

                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      - - cell - - : - Cell -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      - - Returns: - - string -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      +
                                                                                                                                                      + +
                                                                                                                                                      + + + + + +

                                                                                                                                                      + Gets "A1"-style Cell reference. +

                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + + cell + + : + Cell +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + + Returns: + + string +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      @@ -1148,14 +1137,14 @@

                                                                                                                                                      cell : - Cell + Cell

                                                                                                                                                      Returns: - CellValues + CellValues

                                                                                                                                                      @@ -1163,44 +1152,43 @@

                                                                                                                                                      -
                                                                                                                                                      - - - - - - -

                                                                                                                                                      - - Gets a Cell type. - -

                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      - - cell - - : - Cell -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      - - Returns: - - CellValues -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      +
                                                                                                                                                      + +
                                                                                                                                                      + + + + + +

                                                                                                                                                      + Gets a Cell type. +

                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + + cell + + : + Cell +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + + Returns: + + CellValues +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      @@ -1236,7 +1224,7 @@

                                                                                                                                                      cell : - Cell + Cell
                                                                                                                                                      @@ -1251,52 +1239,51 @@

                                                                                                                                                      -
                                                                                                                                                      - - - - - - -

                                                                                                                                                      - - Maps a Cell to the value string using a sharedStringTable. - -

                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      - - sharedStringTable - - : - Option<SST> -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      - - cell - - : - Cell -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      - - Returns: - - string -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      +
                                                                                                                                                      + +
                                                                                                                                                      + + + + + +

                                                                                                                                                      + Maps a Cell to the value string using a sharedStringTable. +

                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + + sharedStringTable + + : + Option<SST> +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + + cell + + : + Cell +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + + Returns: + + string +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      @@ -1332,14 +1319,14 @@

                                                                                                                                                      cell : - Cell + Cell

                                                                                                                                                      Returns: - Cell + Cell

                                                                                                                                                      @@ -1347,52 +1334,51 @@

                                                                                                                                                      -
                                                                                                                                                      - - - - - - -

                                                                                                                                                      - - Includes a value from the sharedStringTable in Cell.CellValue.Text. - -

                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      - - sharedStringTable - - : - SST -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      - - cell - - : - Cell -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      - - Returns: - - Cell -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      +
                                                                                                                                                      + +
                                                                                                                                                      + + + + + +

                                                                                                                                                      + Includes a value from the sharedStringTable in Cell.CellValue.Text. +

                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + + sharedStringTable + + : + SST +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + + cell + + : + Cell +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + + Returns: + + Cell +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      @@ -1427,7 +1413,7 @@


                                                                                                                                                      Returns: - CellValues * string + CellValues * string

                                                                                                                                                      @@ -1435,44 +1421,43 @@

                                                                                                                                                      -
                                                                                                                                                      - - - - - - -

                                                                                                                                                      - - Returns the proper CellValues case for the given value. - -

                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      - - value - - : - 'T -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      - - Returns: - - CellValues * string -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      +
                                                                                                                                                      + +
                                                                                                                                                      + + + + + +

                                                                                                                                                      + Returns the proper CellValues case for the given value. +

                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + + value + + : + 'T +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + + Returns: + + CellValues * string +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      @@ -1508,14 +1493,14 @@

                                                                                                                                                      cell : - Cell + Cell

                                                                                                                                                      Returns: - Cell + Cell

                                                                                                                                                      @@ -1523,52 +1508,51 @@

                                                                                                                                                      -
                                                                                                                                                      - - - - - - -

                                                                                                                                                      - - Sets "A1"-style Cell reference. - -

                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      - - reference - - : - string -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      - - cell - - : - Cell -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      - - Returns: - - Cell -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      +
                                                                                                                                                      + +
                                                                                                                                                      + + + + + +

                                                                                                                                                      + Sets "A1"-style Cell reference. +

                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + + reference + + : + string +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + + cell + + : + Cell +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + + Returns: + + Cell +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      @@ -1596,14 +1580,14 @@

                                                                                                                                                      c : - Cell + Cell

                                                                                                                                                      Returns: - Cell + Cell

                                                                                                                                                      @@ -1611,44 +1595,43 @@

                                                                                                                                                      -
                                                                                                                                                      - - - - - - -

                                                                                                                                                      - - Sets the preserve attribute of a Cell. - -

                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      - - c - - : - Cell -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      - - Returns: - - Cell -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      +
                                                                                                                                                      + +
                                                                                                                                                      + + + + + +

                                                                                                                                                      + Sets the preserve attribute of a Cell. +

                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + + c + + : + Cell +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + + Returns: + + Cell +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      @@ -1676,7 +1659,7 @@

                                                                                                                                                      dataType : - CellValues + CellValues
                                                                                                                                                      @@ -1684,14 +1667,14 @@

                                                                                                                                                      cell : - Cell + Cell

                                                                                                                                                      Returns: - Cell + Cell

                                                                                                                                                      @@ -1699,52 +1682,51 @@

                                                                                                                                                      -
                                                                                                                                                      - - - - - - -

                                                                                                                                                      - - Sets a Cell type. - -

                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      - - dataType - - : - CellValues -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      - - cell - - : - Cell -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      - - Returns: - - Cell -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      +
                                                                                                                                                      + +
                                                                                                                                                      + + + + + +

                                                                                                                                                      + Sets a Cell type. +

                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + + dataType + + : + CellValues +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + + cell + + : + Cell +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + + Returns: + + Cell +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      @@ -1772,7 +1754,7 @@

                                                                                                                                                      value : - CellValue + CellValue
                                                                                                                                                      @@ -1780,14 +1762,14 @@

                                                                                                                                                      cell : - Cell + Cell

                                                                                                                                                      Returns: - Cell + Cell

                                                                                                                                                      @@ -1795,52 +1777,51 @@

                                                                                                                                                      -
                                                                                                                                                      - - - - - - -

                                                                                                                                                      - - Sets a CellValue. - -

                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      - - value - - : - CellValue -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      - - cell - - : - Cell -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      - - Returns: - - Cell -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      +
                                                                                                                                                      + +
                                                                                                                                                      + + + + + +

                                                                                                                                                      + Sets a CellValue. +

                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + + value + + : + CellValue +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + + cell + + : + Cell +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + + Returns: + + Cell +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      @@ -1868,14 +1849,14 @@

                                                                                                                                                      cell : - Cell + Cell

                                                                                                                                                      Returns: - CellValue option + CellValue option

                                                                                                                                                      @@ -1883,44 +1864,43 @@

                                                                                                                                                      -
                                                                                                                                                      - - - - - - -

                                                                                                                                                      - - Gets Some CellValue if cellValue is existent. Else returns None. - -

                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      - - cell - - : - Cell -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      - - Returns: - - CellValue option -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      +
                                                                                                                                                      + +
                                                                                                                                                      + + + + + +

                                                                                                                                                      + Gets Some CellValue if cellValue is existent. Else returns None. +

                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + + cell + + : + Cell +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + + Returns: + + CellValue option +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      @@ -1948,14 +1928,14 @@

                                                                                                                                                      cell : - Cell + Cell

                                                                                                                                                      Returns: - CellValues option + CellValues option

                                                                                                                                                      @@ -1963,44 +1943,43 @@

                                                                                                                                                      -
                                                                                                                                                      - - - - - - -

                                                                                                                                                      - - Gets Some type if existent. Else returns None. - -

                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      - - cell - - : - Cell -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      - - Returns: - - CellValues option -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      +
                                                                                                                                                      + +
                                                                                                                                                      + + + + + +

                                                                                                                                                      + Gets Some type if existent. Else returns None. +

                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + + cell + + : + Cell +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + + Returns: + + CellValues option +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      @@ -2036,7 +2015,7 @@

                                                                                                                                                      cell : - Cell + Cell
                                                                                                                                                      @@ -2051,52 +2030,51 @@

                                                                                                                                                      -
                                                                                                                                                      - - - - - - -

                                                                                                                                                      - - Maps a Cell to the value string using a shared string table. - -

                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      - - sharedStringTable - - : - Option<SST> -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      - - cell - - : - Cell -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      - - Returns: - - string option -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      +
                                                                                                                                                      + +
                                                                                                                                                      + + + + + +

                                                                                                                                                      + Maps a Cell to the value string using a shared string table. +

                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + + sharedStringTable + + : + Option<SST> +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + + cell + + : + Cell +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      + + Returns: + + string option +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      +
                                                                                                                                                      @@ -2111,19 +2089,24 @@

                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      -
                                                                                                                                                      + + + + +
                                                                                                                                                      +
                                                                                                                                                        +

                                                                                                                                                        Type something to start searching.

                                                                                                                                                        +
                                                                                                                                                        +
                                                                                                                                                        + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-net-celldata-celldatavalue.html b/reference/fsspreadsheet-net-celldata-celldatavalue.html index d3efac53..e6273981 100644 --- a/reference/fsspreadsheet-net-celldata-celldatavalue.html +++ b/reference/fsspreadsheet-net-celldata-celldatavalue.html @@ -1,62 +1,50 @@ - - + - - CellDataValue (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                        -
                                                                                                                                                        - +
                                                                                                                                                        -
                                                                                                                                                        -
                                                                                                                                                        -
                                                                                                                                                        - +
                                                                                                                                                        + + + + + +
                                                                                                                                                        + + +
                                                                                                                                                        +
                                                                                                                                                        +

                                                                                                                                                        CellDataValue Type

                                                                                                                                                        @@ -97,15 +116,15 @@

                                                                                                                                                        All Interfaces: - IEquatable<CellDataValue> + IEquatable<CellDataValue> , - IStructuralEquatable + IStructuralEquatable , - IComparable<CellDataValue> + IComparable<CellDataValue> , - IComparable + IComparable , - IStructuralComparable + IStructuralComparable
                                                                                                                                                        @@ -137,7 +156,7 @@

                                                                                                                                                        - +

                                                                                                                                                        @@ -146,7 +165,7 @@

                                                                                                                                                        -
                                                                                                                                                        +
                                                                                                                                                        Full Usage: Boolean string @@ -169,15 +188,6 @@

                                                                                                                                                        -
                                                                                                                                                        - - - - -

                                                                                                                                                        - -

                                                                                                                                                        -
                                                                                                                                                        @@ -193,7 +203,7 @@

                                                                                                                                                        - +

                                                                                                                                                        @@ -202,7 +212,7 @@

                                                                                                                                                        -
                                                                                                                                                        +
                                                                                                                                                        Full Usage: Date string @@ -225,15 +235,6 @@

                                                                                                                                                        -
                                                                                                                                                        - - - - -

                                                                                                                                                        - -

                                                                                                                                                        -
                                                                                                                                                        @@ -249,7 +250,7 @@

                                                                                                                                                        - +

                                                                                                                                                        @@ -258,7 +259,7 @@

                                                                                                                                                        -
                                                                                                                                                        +
                                                                                                                                                        Full Usage: Error string @@ -281,15 +282,6 @@

                                                                                                                                                        -
                                                                                                                                                        - - - - -

                                                                                                                                                        - -

                                                                                                                                                        -
                                                                                                                                                        @@ -305,7 +297,7 @@

                                                                                                                                                        - +

                                                                                                                                                        @@ -314,7 +306,7 @@

                                                                                                                                                        -
                                                                                                                                                        +
                                                                                                                                                        Full Usage: Number string @@ -337,15 +329,6 @@

                                                                                                                                                        -
                                                                                                                                                        - - - - -

                                                                                                                                                        - -

                                                                                                                                                        -
                                                                                                                                                        @@ -361,7 +344,7 @@

                                                                                                                                                        - +

                                                                                                                                                        @@ -370,7 +353,7 @@

                                                                                                                                                        -
                                                                                                                                                        +
                                                                                                                                                        Full Usage: String string @@ -393,15 +376,6 @@

                                                                                                                                                        -
                                                                                                                                                        - - - - -

                                                                                                                                                        - -

                                                                                                                                                        -
                                                                                                                                                        @@ -423,19 +397,24 @@

                                                                                                                                                        -
                                                                                                                                                        -

                                                                                                                                                        -

                                                                                                                                                        +

                                                                                                                                                        + + + +
                                                                                                                                                        +
                                                                                                                                                          +

                                                                                                                                                          Type something to start searching.

                                                                                                                                                          +
                                                                                                                                                          +
                                                                                                                                                          + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-net-celldata-cellerror.html b/reference/fsspreadsheet-net-celldata-cellerror.html index 4d45b0ec..53466d9d 100644 --- a/reference/fsspreadsheet-net-celldata-cellerror.html +++ b/reference/fsspreadsheet-net-celldata-cellerror.html @@ -1,62 +1,50 @@ - - + - - CellError (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                          -
                                                                                                                                                          - +
                                                                                                                                                          -
                                                                                                                                                          -
                                                                                                                                                          -
                                                                                                                                                          - +
                                                                                                                                                          + + + + + +
                                                                                                                                                          + + +
                                                                                                                                                          +
                                                                                                                                                          +

                                                                                                                                                          CellError Type

                                                                                                                                                          @@ -93,15 +112,17 @@

                                                                                                                                                          Base Type: - Enum + Enum
                                                                                                                                                          All Interfaces: - IComparable + IComparable , - IConvertible + IConvertible , - IFormattable + ISpanFormattable + , + IFormattable
                                                                                                                                                          Kind: Struct @@ -140,7 +161,7 @@

                                                                                                                                                          - +

                                                                                                                                                          @@ -149,7 +170,7 @@

                                                                                                                                                          -
                                                                                                                                                          +
                                                                                                                                                          Full Usage: DIV0 @@ -168,15 +189,6 @@

                                                                                                                                                          -
                                                                                                                                                          - - - - -

                                                                                                                                                          - -

                                                                                                                                                          -
                                                                                                                                                          @@ -191,7 +203,7 @@

                                                                                                                                                          - +

                                                                                                                                                          @@ -200,7 +212,7 @@

                                                                                                                                                          -
                                                                                                                                                          +
                                                                                                                                                          Full Usage: GettingDATA @@ -219,15 +231,6 @@

                                                                                                                                                          -
                                                                                                                                                          - - - - -

                                                                                                                                                          - -

                                                                                                                                                          -
                                                                                                                                                          @@ -242,7 +245,7 @@

                                                                                                                                                          - +

                                                                                                                                                          @@ -251,7 +254,7 @@

                                                                                                                                                          -
                                                                                                                                                          +
                                                                                                                                                          Full Usage: NA @@ -270,15 +273,6 @@

                                                                                                                                                          -
                                                                                                                                                          - - - - -

                                                                                                                                                          - -

                                                                                                                                                          -
                                                                                                                                                          @@ -293,7 +287,7 @@

                                                                                                                                                          - +

                                                                                                                                                          @@ -302,7 +296,7 @@

                                                                                                                                                          -
                                                                                                                                                          +
                                                                                                                                                          Full Usage: NAME @@ -321,15 +315,6 @@

                                                                                                                                                          -
                                                                                                                                                          - - - - -

                                                                                                                                                          - -

                                                                                                                                                          -
                                                                                                                                                          @@ -344,7 +329,7 @@

                                                                                                                                                          - +

                                                                                                                                                          @@ -353,7 +338,7 @@

                                                                                                                                                          -
                                                                                                                                                          +
                                                                                                                                                          Full Usage: NUM @@ -372,15 +357,6 @@

                                                                                                                                                          -
                                                                                                                                                          - - - - -

                                                                                                                                                          - -

                                                                                                                                                          -
                                                                                                                                                          @@ -395,7 +371,7 @@

                                                                                                                                                          - +

                                                                                                                                                          @@ -404,7 +380,7 @@

                                                                                                                                                          -
                                                                                                                                                          +
                                                                                                                                                          Full Usage: Null @@ -423,15 +399,6 @@

                                                                                                                                                          -
                                                                                                                                                          - - - - -

                                                                                                                                                          - -

                                                                                                                                                          -
                                                                                                                                                          @@ -446,7 +413,7 @@

                                                                                                                                                          - +

                                                                                                                                                          @@ -455,7 +422,7 @@

                                                                                                                                                          -
                                                                                                                                                          +
                                                                                                                                                          Full Usage: REF @@ -474,15 +441,6 @@

                                                                                                                                                          -
                                                                                                                                                          - - - - -

                                                                                                                                                          - -

                                                                                                                                                          -
                                                                                                                                                          @@ -497,7 +455,7 @@

                                                                                                                                                          - +

                                                                                                                                                          @@ -506,7 +464,7 @@

                                                                                                                                                          -
                                                                                                                                                          +
                                                                                                                                                          Full Usage: VALUE @@ -525,15 +483,6 @@

                                                                                                                                                          -
                                                                                                                                                          - - - - -

                                                                                                                                                          - -

                                                                                                                                                          -
                                                                                                                                                          @@ -553,19 +502,24 @@

                                                                                                                                                          -
                                                                                                                                                          -

                                                                                                                                                          -

                                                                                                                                                          +

                                                                                                                                                          + + + +
                                                                                                                                                          +
                                                                                                                                                            +

                                                                                                                                                            Type something to start searching.

                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-net-celldata.html b/reference/fsspreadsheet-net-celldata.html index c9ee5973..3d38c456 100644 --- a/reference/fsspreadsheet-net-celldata.html +++ b/reference/fsspreadsheet-net-celldata.html @@ -1,62 +1,50 @@ - - + - - CellData (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                            -
                                                                                                                                                            - +
                                                                                                                                                            -
                                                                                                                                                            -
                                                                                                                                                            -
                                                                                                                                                            - +
                                                                                                                                                            + + + + + +
                                                                                                                                                            + + +
                                                                                                                                                            +
                                                                                                                                                            +

                                                                                                                                                            CellData Module

                                                                                                                                                            @@ -89,9 +108,7 @@

                                                                                                                                                            - - Functions for working with CellData. - + Functions for working with CellData.

                                                                                                                                                            @@ -124,16 +141,13 @@

                                                                                                                                                            - - +

                                                                                                                                                            @@ -154,16 +168,13 @@

                                                                                                                                                            - - +

                                                                                                                                                            @@ -215,7 +226,7 @@

                                                                                                                                                            sharedStringTable : - SharedStringTable + SharedStringTable
                                                                                                                                                            @@ -223,7 +234,7 @@

                                                                                                                                                            cell : - Cell + Cell
                                                                                                                                                            @@ -238,52 +249,51 @@

                                                                                                                                                            -
                                                                                                                                                            - - - - - - -

                                                                                                                                                            - - Creates a CellDataValue from a sharedStringTable and a cell. - -

                                                                                                                                                            -
                                                                                                                                                            -
                                                                                                                                                            -
                                                                                                                                                            - - sharedStringTable - - : - SharedStringTable -
                                                                                                                                                            -
                                                                                                                                                            -
                                                                                                                                                            - - cell - - : - Cell -
                                                                                                                                                            -
                                                                                                                                                            -
                                                                                                                                                            -
                                                                                                                                                            -
                                                                                                                                                            - - Returns: - - CellDataValue -
                                                                                                                                                            -
                                                                                                                                                            -
                                                                                                                                                            +
                                                                                                                                                            + +
                                                                                                                                                            + + + + + +

                                                                                                                                                            + Creates a CellDataValue from a sharedStringTable and a cell. +

                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            + + sharedStringTable + + : + SharedStringTable +
                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            + + cell + + : + Cell +
                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            + + Returns: + + CellDataValue +
                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            +
                                                                                                                                                            @@ -298,19 +308,24 @@

                                                                                                                                                            -

                                                                                                                                                            -
                                                                                                                                                            -
                                                                                                                                                            + + + + +
                                                                                                                                                            +
                                                                                                                                                              +

                                                                                                                                                              Type something to start searching.

                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-net-fsextensions.html b/reference/fsspreadsheet-net-fsextensions.html index df4a3800..97fc31b9 100644 --- a/reference/fsspreadsheet-net-fsextensions.html +++ b/reference/fsspreadsheet-net-fsextensions.html @@ -1,62 +1,50 @@ - - + - - FsExtensions (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                              -
                                                                                                                                                              - +
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - +
                                                                                                                                                              + + + + + +
                                                                                                                                                              + + +
                                                                                                                                                              +
                                                                                                                                                              +

                                                                                                                                                              FsExtensions Module

                                                                                                                                                              @@ -89,9 +108,7 @@

                                                                                                                                                              - - Classes that extend the core FsSpreadsheet library with IO functionalities. - + Classes that extend the core FsSpreadsheet library with IO functionalities.

                                                                                                                                                              @@ -137,7 +154,7 @@

                                                                                                                                                              xlsxlWorkbookPart : - WorkbookPart + WorkbookPart
                                                                                                                                                              @@ -145,7 +162,7 @@

                                                                                                                                                              xlsxWorksheetPart : - WorksheetPart + WorksheetPart
                                                                                                                                                              @@ -155,47 +172,46 @@

                                                                                                                                                              -
                                                                                                                                                              - - - - - - -

                                                                                                                                                              - - Appends the FsTables of this FsWorksheet to a given OpenXmlWorksheetPart in an XlsxWorkbookPart. - +

                                                                                                                                                              + +
                                                                                                                                                              + + + + + +

                                                                                                                                                              + Appends the FsTables of this FsWorksheet to a given OpenXmlWorksheetPart in an XlsxWorkbookPart. +

                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +

                                                                                                                                                              + Extended Type: + FsWorksheet

                                                                                                                                                              -
                                                                                                                                                              -

                                                                                                                                                              - Extended Type: - FsWorksheet -

                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - xlsxlWorkbookPart - - : - WorkbookPart -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - xlsxWorksheetPart - - : - WorksheetPart -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + xlsxlWorkbookPart + + : + WorkbookPart +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + xlsxWorksheetPart + + : + WorksheetPart +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + @@ -238,48 +254,47 @@

                                                                                                                                                              -
                                                                                                                                                              - - - - - - -

                                                                                                                                                              - - Returns the FsWorksheet associated with the FsTable in a given FsWorkbook. - +

                                                                                                                                                              + +
                                                                                                                                                              + + + + + +

                                                                                                                                                              + Returns the FsWorksheet associated with the FsTable in a given FsWorkbook. +

                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +

                                                                                                                                                              + Extended Type: + FsTable

                                                                                                                                                              -
                                                                                                                                                              -

                                                                                                                                                              - Extended Type: - FsTable -

                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - workbook - - : - FsWorkbook -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - Returns: - - FsWorksheet -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + workbook + + : + FsWorkbook +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + Returns: + + FsWorksheet +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + @@ -333,23 +348,6 @@

                                                                                                                                                              -
                                                                                                                                                              - - - - - - -

                                                                                                                                                              - -

                                                                                                                                                              -

                                                                                                                                                              Extended Type: FsWorkbook @@ -430,23 +428,6 @@

                                                                                                                                                              -
                                                                                                                                                              - - - - - - -

                                                                                                                                                              - -

                                                                                                                                                              -

                                                                                                                                                              Extended Type: FsWorkbook @@ -505,7 +486,7 @@

                                                                                                                                                              doc : - SpreadsheetDocument + SpreadsheetDocument
                                                                                                                                                              @@ -515,23 +496,6 @@

                                                                                                                                                              -
                                                                                                                                                              - - - - - - -

                                                                                                                                                              - -

                                                                                                                                                              -

                                                                                                                                                              Extended Type: FsWorkbook @@ -542,7 +506,7 @@

                                                                                                                                                              doc : - SpreadsheetDocument + SpreadsheetDocument
                                                                                                                                                              @@ -599,23 +563,6 @@

                                                                                                                                                              -
                                                                                                                                                              - - - - - - -

                                                                                                                                                              - -

                                                                                                                                                              -

                                                                                                                                                              Extended Type: FsWorkbook @@ -696,23 +643,6 @@

                                                                                                                                                              -
                                                                                                                                                              - - - - - - -

                                                                                                                                                              - -

                                                                                                                                                              -

                                                                                                                                                              Extended Type: FsWorkbook @@ -786,48 +716,47 @@

                                                                                                                                                              -
                                                                                                                                                              - - - - - - -

                                                                                                                                                              - - Returns the FsWorkbook in the form of a byte array. - +

                                                                                                                                                              + +
                                                                                                                                                              + + + + + +

                                                                                                                                                              + Returns the FsWorkbook in the form of a byte array. +

                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +

                                                                                                                                                              + Extended Type: + FsWorkbook

                                                                                                                                                              -
                                                                                                                                                              -

                                                                                                                                                              - Extended Type: - FsWorkbook -

                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - () - - : - unit -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - Returns: - - byte[] -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + () + + : + unit +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + Returns: + + byte[] +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + @@ -865,39 +794,38 @@

                                                                                                                                                              -
                                                                                                                                                              - - - - - - -

                                                                                                                                                              - - Writes the FsWorkbook into a binary file at the given path. - +

                                                                                                                                                              + +
                                                                                                                                                              + + + + + +

                                                                                                                                                              + Writes the FsWorkbook into a binary file at the given path. +

                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +

                                                                                                                                                              + Extended Type: + FsWorkbook

                                                                                                                                                              -
                                                                                                                                                              -

                                                                                                                                                              - Extended Type: - FsWorkbook -

                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - path - - : - string -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + path + + : + string +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + @@ -925,7 +853,7 @@

                                                                                                                                                              stream : - MemoryStream + MemoryStream
                                                                                                                                                              @@ -935,39 +863,38 @@

                                                                                                                                                              -
                                                                                                                                                              - - - - - - -

                                                                                                                                                              - - Writes the FsWorkbook into a given MemoryStream. - +

                                                                                                                                                              + +
                                                                                                                                                              + + + + + +

                                                                                                                                                              + Writes the FsWorkbook into a given MemoryStream. +

                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +

                                                                                                                                                              + Extended Type: + FsWorkbook

                                                                                                                                                              -
                                                                                                                                                              -

                                                                                                                                                              - Extended Type: - FsWorkbook -

                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - stream - - : - MemoryStream -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + stream + + : + MemoryStream +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + @@ -1002,7 +929,7 @@


                                                                                                                                                              Returns: - Table + Table

                                                                                                                                                              @@ -1010,48 +937,47 @@

                                                                                                                                                              -
                                                                                                                                                              - - - - - - -

                                                                                                                                                              - - Returns the FsTable with given FsCellsCollection in the form of an XlsxTable. - +

                                                                                                                                                              + +
                                                                                                                                                              + + + + + +

                                                                                                                                                              + Returns the FsTable with given FsCellsCollection in the form of an XlsxTable. +

                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +

                                                                                                                                                              + Extended Type: + FsTable

                                                                                                                                                              -
                                                                                                                                                              -

                                                                                                                                                              - Extended Type: - FsTable -

                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - cells - - : - FsCellsCollection -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - Returns: - - Table -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + cells + + : + FsCellsCollection +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + Returns: + + Table +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + @@ -1079,14 +1005,14 @@

                                                                                                                                                              doc : - SpreadsheetDocument + SpreadsheetDocument

                                                                                                                                                              Returns: - Worksheet + Worksheet

                                                                                                                                                              @@ -1094,48 +1020,47 @@

                                                                                                                                                              -
                                                                                                                                                              - - - - - - -

                                                                                                                                                              - - Returns the FsWorksheet in the form of an XlsxSpreadsheet. - +

                                                                                                                                                              + +
                                                                                                                                                              + + + + + +

                                                                                                                                                              + Returns the FsWorksheet in the form of an XlsxSpreadsheet. +

                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +

                                                                                                                                                              + Extended Type: + FsWorksheet

                                                                                                                                                              -
                                                                                                                                                              -

                                                                                                                                                              - Extended Type: - FsWorksheet -

                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - doc - - : - SpreadsheetDocument -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - Returns: - - Worksheet -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + doc + + : + SpreadsheetDocument +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + Returns: + + Worksheet +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + @@ -1163,7 +1088,7 @@

                                                                                                                                                              xlsxWorkbookPart : - WorkbookPart + WorkbookPart
                                                                                                                                                              @@ -1171,7 +1096,7 @@

                                                                                                                                                              xlsxWorksheetPart : - WorksheetPart + WorksheetPart
                                                                                                                                                              @@ -1189,55 +1114,54 @@

                                                                                                                                                              -
                                                                                                                                                              - - - - - - -

                                                                                                                                                              - - Appends the FsTables of an FsWorksheet to a given OpenXmlWorksheetPart in an XlsxWorkbookPart. - +

                                                                                                                                                              + +
                                                                                                                                                              + + + + + +

                                                                                                                                                              + Appends the FsTables of an FsWorksheet to a given OpenXmlWorksheetPart in an XlsxWorkbookPart. +

                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +

                                                                                                                                                              + Extended Type: + FsWorksheet

                                                                                                                                                              -
                                                                                                                                                              -

                                                                                                                                                              - Extended Type: - FsWorksheet -

                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - xlsxWorkbookPart - - : - WorkbookPart -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - xlsxWorksheetPart - - : - WorksheetPart -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - fsWorksheet - - : - FsWorksheet -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + xlsxWorkbookPart + + : + WorkbookPart +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + xlsxWorksheetPart + + : + WorksheetPart +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + fsWorksheet + + : + FsWorksheet +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + @@ -1280,48 +1204,47 @@

                                                                                                                                                              -
                                                                                                                                                              - - - - - - -

                                                                                                                                                              - - Takes the path to an json file and returns the FsWorkbook based on its content. - -

                                                                                                                                                              -
                                                                                                                                                              -

                                                                                                                                                              - Extended Type: - FsWorkbook -

                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - filePath - - : - string -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - Returns: - +
                                                                                                                                                              + +
                                                                                                                                                              + + + + + +

                                                                                                                                                              + Takes the path to an json file and returns the FsWorkbook based on its content. +

                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +

                                                                                                                                                              + Extended Type: FsWorkbook -

                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              +

                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + filePath + + : + string +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + Returns: + + FsWorkbook +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + @@ -1364,48 +1287,47 @@

                                                                                                                                                              -
                                                                                                                                                              - - - - - - -

                                                                                                                                                              - - Takes a json string and returns the FsWorkbook based on its content. - -

                                                                                                                                                              -
                                                                                                                                                              -

                                                                                                                                                              - Extended Type: - FsWorkbook -

                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - json - - : - string -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - Returns: - +
                                                                                                                                                              + +
                                                                                                                                                              + + + + + +

                                                                                                                                                              + Takes a json string and returns the FsWorkbook based on its content. +

                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +

                                                                                                                                                              + Extended Type: FsWorkbook -

                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              +

                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + json + + : + string +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + Returns: + + FsWorkbook +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + @@ -1433,7 +1355,7 @@

                                                                                                                                                              package : - Package + Package
                                                                                                                                                              @@ -1448,48 +1370,47 @@

                                                                                                                                                              -
                                                                                                                                                              - - - - - - -

                                                                                                                                                              - - Creates an FsWorkbook from a given Packaging.Package xlsx package. - -

                                                                                                                                                              -
                                                                                                                                                              -

                                                                                                                                                              - Extended Type: - FsWorkbook -

                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - package - - : - Package -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - Returns: - +
                                                                                                                                                              + +
                                                                                                                                                              + + + + + +

                                                                                                                                                              + Creates an FsWorkbook from a given Packaging.Package xlsx package. +

                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +

                                                                                                                                                              + Extended Type: FsWorkbook -

                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              +

                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + package + + : + Package +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + Returns: + + FsWorkbook +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + @@ -1532,48 +1453,47 @@

                                                                                                                                                              -
                                                                                                                                                              - - - - - - -

                                                                                                                                                              - - Takes the path to an json file and returns the FsWorkbook based on its content. - -

                                                                                                                                                              -
                                                                                                                                                              -

                                                                                                                                                              - Extended Type: - FsWorkbook -

                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - filePath - - : - string -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - Returns: - +
                                                                                                                                                              + +
                                                                                                                                                              + + + + + +

                                                                                                                                                              + Takes the path to an json file and returns the FsWorkbook based on its content. +

                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +

                                                                                                                                                              + Extended Type: FsWorkbook -

                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              +

                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + filePath + + : + string +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + Returns: + + FsWorkbook +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + @@ -1616,48 +1536,47 @@

                                                                                                                                                              -
                                                                                                                                                              - - - - - - -

                                                                                                                                                              - - Takes a json string and returns the FsWorkbook based on its content. - -

                                                                                                                                                              -
                                                                                                                                                              -

                                                                                                                                                              - Extended Type: - FsWorkbook -

                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - json - - : - string -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - Returns: - +
                                                                                                                                                              + +
                                                                                                                                                              + + + + + +

                                                                                                                                                              + Takes a json string and returns the FsWorkbook based on its content. +

                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +

                                                                                                                                                              + Extended Type: FsWorkbook -

                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              +

                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + json + + : + string +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + Returns: + + FsWorkbook +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + @@ -1685,7 +1604,7 @@

                                                                                                                                                              doc : - SpreadsheetDocument + SpreadsheetDocument
                                                                                                                                                              @@ -1700,48 +1619,47 @@

                                                                                                                                                              -
                                                                                                                                                              - - - - - - -

                                                                                                                                                              - - Creates an FsWorkbook from a given SpreadsheetDocument. - -

                                                                                                                                                              -
                                                                                                                                                              -

                                                                                                                                                              - Extended Type: - FsWorkbook -

                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - doc - - : - SpreadsheetDocument -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - Returns: - +
                                                                                                                                                              + +
                                                                                                                                                              + + + + + +

                                                                                                                                                              + Creates an FsWorkbook from a given SpreadsheetDocument. +

                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +

                                                                                                                                                              + Extended Type: FsWorkbook -

                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              +

                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + doc + + : + SpreadsheetDocument +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + Returns: + + FsWorkbook +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + @@ -1784,48 +1702,47 @@

                                                                                                                                                              -
                                                                                                                                                              - - - - - - -

                                                                                                                                                              - - Creates an FsWorkbook from a given Stream to an XlsxFile. - -

                                                                                                                                                              -
                                                                                                                                                              -

                                                                                                                                                              - Extended Type: - FsWorkbook -

                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - bytes - - : - byte[] -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - Returns: - +
                                                                                                                                                              + +
                                                                                                                                                              + + + + + +

                                                                                                                                                              + Creates an FsWorkbook from a given Stream to an XlsxFile. +

                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +

                                                                                                                                                              + Extended Type: FsWorkbook -

                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              +

                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + bytes + + : + byte[] +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + Returns: + + FsWorkbook +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + @@ -1868,48 +1785,47 @@

                                                                                                                                                              -
                                                                                                                                                              - - - - - - -

                                                                                                                                                              - - Takes the path to an Xlsx file and returns the FsWorkbook based on its content. - -

                                                                                                                                                              -
                                                                                                                                                              -

                                                                                                                                                              - Extended Type: - FsWorkbook -

                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - filePath - - : - string -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - Returns: - +
                                                                                                                                                              + +
                                                                                                                                                              + + + + + +

                                                                                                                                                              + Takes the path to an Xlsx file and returns the FsWorkbook based on its content. +

                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +

                                                                                                                                                              + Extended Type: FsWorkbook -

                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              +

                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + filePath + + : + string +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + Returns: + + FsWorkbook +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + @@ -1937,7 +1853,7 @@

                                                                                                                                                              stream : - Stream + Stream
                                                                                                                                                              @@ -1952,48 +1868,47 @@

                                                                                                                                                              -
                                                                                                                                                              - - - - - - -

                                                                                                                                                              - - Creates an FsWorkbook from a given Stream to an XlsxFile. - -

                                                                                                                                                              -
                                                                                                                                                              -

                                                                                                                                                              - Extended Type: - FsWorkbook -

                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - stream - - : - Stream -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - Returns: - +
                                                                                                                                                              + +
                                                                                                                                                              + + + + + +

                                                                                                                                                              + Creates an FsWorkbook from a given Stream to an XlsxFile. +

                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +

                                                                                                                                                              + Extended Type: FsWorkbook -

                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              +

                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + stream + + : + Stream +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + Returns: + + FsWorkbook +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + @@ -2021,63 +1936,62 @@

                                                                                                                                                              table : - Table + Table
                                                                                                                                                              - -
                                                                                                                                                              - - Returns: - FsTable - -
                                                                                                                                                              -

                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - -
                                                                                                                                                              - - - - - - -

                                                                                                                                                              - - Takes an XlsxTable and returns an FsTable. - -

                                                                                                                                                              -
                                                                                                                                                              -

                                                                                                                                                              - Extended Type: - FsTable -

                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - table - - : - Table -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - Returns: - + +
                                                                                                                                                              + + Returns: + FsTable + +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + +
                                                                                                                                                              + +
                                                                                                                                                              + + + + + +

                                                                                                                                                              + Takes an XlsxTable and returns an FsTable. +

                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +

                                                                                                                                                              + Extended Type: FsTable - -

                                                                                                                                                              - +

                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + table + + : + Table +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + Returns: + + FsTable +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              @@ -2128,56 +2042,55 @@

                                                                                                                                                              -
                                                                                                                                                              - - - - - - -

                                                                                                                                                              - - Returns the FsWorksheet associated with a given FsTable in an FsWorkbook. - -

                                                                                                                                                              -
                                                                                                                                                              -

                                                                                                                                                              - Extended Type: - FsTable -

                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - workbook - - : - FsWorkbook -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - table - - : +
                                                                                                                                                              + +
                                                                                                                                                              + + + + + +

                                                                                                                                                              + Returns the FsWorksheet associated with a given FsTable in an FsWorkbook. +

                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +

                                                                                                                                                              + Extended Type: FsTable -

                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - Returns: - - FsWorksheet -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              +

                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + workbook + + : + FsWorkbook +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + table + + : + FsTable +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + Returns: + + FsWorksheet +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + @@ -2205,7 +2118,7 @@

                                                                                                                                                              doc : - SpreadsheetDocument + SpreadsheetDocument
                                                                                                                                                              @@ -2213,7 +2126,7 @@

                                                                                                                                                              cell : - Cell + Cell
                                                                                                                                                              @@ -2228,56 +2141,55 @@

                                                                                                                                                              -
                                                                                                                                                              - - - - - - -

                                                                                                                                                              - - Converts a given CellValues to the respective DataType. - -

                                                                                                                                                              -
                                                                                                                                                              -

                                                                                                                                                              - Extended Type: - DataType -

                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - doc - - : - SpreadsheetDocument -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - cell - - : - Cell -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - Returns: - +
                                                                                                                                                              + +
                                                                                                                                                              + + + + + +

                                                                                                                                                              + Converts a given CellValues to the respective DataType. +

                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +

                                                                                                                                                              + Extended Type: DataType -

                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              +

                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + doc + + : + SpreadsheetDocument +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + cell + + : + Cell +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + Returns: + + DataType +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + @@ -2305,7 +2217,7 @@

                                                                                                                                                              doc : - SpreadsheetDocument + SpreadsheetDocument
                                                                                                                                                              @@ -2321,7 +2233,7 @@

                                                                                                                                                              xlsxCell : - Cell + Cell
                                                                                                                                                              @@ -2336,64 +2248,63 @@

                                                                                                                                                              -
                                                                                                                                                              - - - - - - -

                                                                                                                                                              - - Creates an FsCell on the basis of an XlsxCell. Uses a SharedStringTable if present to get the XlsxCell's value. - -

                                                                                                                                                              -
                                                                                                                                                              -

                                                                                                                                                              - Extended Type: - FsCell -

                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - doc - - : - SpreadsheetDocument -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - sst - - : - SST option -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - xlsxCell - - : - Cell -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - Returns: - +
                                                                                                                                                              + +
                                                                                                                                                              + + + + + +

                                                                                                                                                              + Creates an FsCell on the basis of an XlsxCell. Uses a SharedStringTable if present to get the XlsxCell's value. +

                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +

                                                                                                                                                              + Extended Type: FsCell -

                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              +

                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + doc + + : + SpreadsheetDocument +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + sst + + : + SST option +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + xlsxCell + + : + Cell +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + Returns: + + FsCell +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + @@ -2452,23 +2363,6 @@

                                                                                                                                                              -
                                                                                                                                                              - - - - - - -

                                                                                                                                                              - -

                                                                                                                                                              -

                                                                                                                                                              Extended Type: FsWorkbook @@ -2566,23 +2460,6 @@

                                                                                                                                                              -
                                                                                                                                                              - - - - - - -

                                                                                                                                                              - -

                                                                                                                                                              -

                                                                                                                                                              Extended Type: FsWorkbook @@ -2680,23 +2557,6 @@

                                                                                                                                                              -
                                                                                                                                                              - - - - - - -

                                                                                                                                                              - -

                                                                                                                                                              -

                                                                                                                                                              Extended Type: FsWorkbook @@ -2794,23 +2654,6 @@

                                                                                                                                                              -
                                                                                                                                                              - - - - - - -

                                                                                                                                                              - -

                                                                                                                                                              -

                                                                                                                                                              Extended Type: FsWorkbook @@ -2892,48 +2735,47 @@

                                                                                                                                                              -
                                                                                                                                                              - - - - - - -

                                                                                                                                                              - - Returns an FsWorkbook in the form of a byte array. - -

                                                                                                                                                              -
                                                                                                                                                              -

                                                                                                                                                              - Extended Type: - FsWorkbook -

                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - workbook - - : +
                                                                                                                                                              + +
                                                                                                                                                              + + + + + +

                                                                                                                                                              + Returns an FsWorkbook in the form of a byte array. +

                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +

                                                                                                                                                              + Extended Type: FsWorkbook -

                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - Returns: - - byte[] -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              +

                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + workbook + + : + FsWorkbook +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + Returns: + + byte[] +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + @@ -2961,7 +2803,7 @@

                                                                                                                                                              doc : - SpreadsheetDocument + SpreadsheetDocument
                                                                                                                                                              @@ -2976,7 +2818,7 @@


                                                                                                                                                              Returns: - Cell + Cell

                                                                                                                                                              @@ -2984,23 +2826,6 @@

                                                                                                                                                              -
                                                                                                                                                              - - - - - - -

                                                                                                                                                              - -

                                                                                                                                                              -

                                                                                                                                                              Extended Type: FsCell @@ -3011,7 +2836,7 @@

                                                                                                                                                              doc : - SpreadsheetDocument + SpreadsheetDocument
                                                                                                                                                              @@ -3028,7 +2853,7 @@

                                                                                                                                                              Returns: - Cell + Cell

                                                                                                                                                              @@ -3077,47 +2902,46 @@

                                                                                                                                                              -
                                                                                                                                                              - - - - - - -

                                                                                                                                                              - - Writes an FsWorkbook into a binary file at the given path. - -

                                                                                                                                                              -
                                                                                                                                                              -

                                                                                                                                                              - Extended Type: - FsWorkbook -

                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - path - - : - string -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - workbook - - : +
                                                                                                                                                              + +
                                                                                                                                                              + + + + + +

                                                                                                                                                              + Writes an FsWorkbook into a binary file at the given path. +

                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +

                                                                                                                                                              + Extended Type: FsWorkbook -

                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              +

                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + path + + : + string +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + workbook + + : + FsWorkbook +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + @@ -3145,7 +2969,7 @@

                                                                                                                                                              stream : - MemoryStream + MemoryStream
                                                                                                                                                              @@ -3163,47 +2987,46 @@

                                                                                                                                                              -
                                                                                                                                                              - - - - - - -

                                                                                                                                                              - - Writes an FsWorkbook into a given MemoryStream. - -

                                                                                                                                                              -
                                                                                                                                                              -

                                                                                                                                                              - Extended Type: - FsWorkbook -

                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - stream - - : - MemoryStream -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - workbook - - : +
                                                                                                                                                              + +
                                                                                                                                                              + + + + + +

                                                                                                                                                              + Writes an FsWorkbook into a given MemoryStream. +

                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +

                                                                                                                                                              + Extended Type: FsWorkbook -

                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              +

                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + stream + + : + MemoryStream +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + workbook + + : + FsWorkbook +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + @@ -3246,7 +3069,7 @@


                                                                                                                                                              Returns: - Table + Table

                                                                                                                                                              @@ -3254,56 +3077,55 @@

                                                                                                                                                              -
                                                                                                                                                              - - - - - - -

                                                                                                                                                              - - Returns an FsTable with given FsCellsCollection in the form of an XlsxTable. - -

                                                                                                                                                              -
                                                                                                                                                              -

                                                                                                                                                              - Extended Type: - FsTable -

                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - cellsCollection - - : - FsCellsCollection -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - table - - : +
                                                                                                                                                              + +
                                                                                                                                                              + + + + + +

                                                                                                                                                              + Returns an FsTable with given FsCellsCollection in the form of an XlsxTable. +

                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +

                                                                                                                                                              + Extended Type: FsTable -

                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - Returns: - - Table -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              +

                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + cellsCollection + + : + FsCellsCollection +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + table + + : + FsTable +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + Returns: + + Table +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + @@ -3339,14 +3161,14 @@

                                                                                                                                                              doc : - SpreadsheetDocument + SpreadsheetDocument

                                                                                                                                                              Returns: - Worksheet + Worksheet

                                                                                                                                                              @@ -3354,56 +3176,55 @@

                                                                                                                                                              -
                                                                                                                                                              - - - - - - -

                                                                                                                                                              - - Returns an FsWorksheet in the form of an XlsxSpreadsheet. - -

                                                                                                                                                              -
                                                                                                                                                              -

                                                                                                                                                              - Extended Type: - FsWorksheet -

                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - fsWorksheet - - : +
                                                                                                                                                              + +
                                                                                                                                                              + + + + + +

                                                                                                                                                              + Returns an FsWorksheet in the form of an XlsxSpreadsheet. +

                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +

                                                                                                                                                              + Extended Type: FsWorksheet -

                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - doc - - : - SpreadsheetDocument -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - Returns: - - Worksheet -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              +

                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + fsWorksheet + + : + FsWorksheet +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + doc + + : + SpreadsheetDocument +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + Returns: + + Worksheet +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + @@ -3446,48 +3267,47 @@

                                                                                                                                                              -
                                                                                                                                                              - - - - - - -

                                                                                                                                                              - - Takes the path to an json file and returns the FsWorkbook based on its content. - +

                                                                                                                                                              + +
                                                                                                                                                              + + + + + +

                                                                                                                                                              + Takes the path to an json file and returns the FsWorkbook based on its content. +

                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +

                                                                                                                                                              + Extended Type: + FsWorkbook

                                                                                                                                                              -
                                                                                                                                                              -

                                                                                                                                                              - Extended Type: - FsWorkbook -

                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - filePath - - : - string -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - Returns: - - Result<FsWorkbook, string> -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + filePath + + : + string +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + Returns: + + Result<FsWorkbook, string> +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + @@ -3530,48 +3350,47 @@

                                                                                                                                                              -
                                                                                                                                                              - - - - - - -

                                                                                                                                                              - - Takes a json string and returns the FsWorkbook based on its content. - +

                                                                                                                                                              + +
                                                                                                                                                              + + + + + +

                                                                                                                                                              + Takes a json string and returns the FsWorkbook based on its content. +

                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +

                                                                                                                                                              + Extended Type: + FsWorkbook

                                                                                                                                                              -
                                                                                                                                                              -

                                                                                                                                                              - Extended Type: - FsWorkbook -

                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - json - - : - string -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - Returns: - - Result<FsWorkbook, string> -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + json + + : + string +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + Returns: + + Result<FsWorkbook, string> +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + @@ -3614,48 +3433,47 @@

                                                                                                                                                              -
                                                                                                                                                              - - - - - - -

                                                                                                                                                              - - Takes the path to an json file and returns the FsWorkbook based on its content. - +

                                                                                                                                                              + +
                                                                                                                                                              + + + + + +

                                                                                                                                                              + Takes the path to an json file and returns the FsWorkbook based on its content. +

                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +

                                                                                                                                                              + Extended Type: + FsWorkbook

                                                                                                                                                              -
                                                                                                                                                              -

                                                                                                                                                              - Extended Type: - FsWorkbook -

                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - filePath - - : - string -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - Returns: - - Result<FsWorkbook, string> -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + filePath + + : + string +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + Returns: + + Result<FsWorkbook, string> +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + @@ -3698,48 +3516,47 @@

                                                                                                                                                              -
                                                                                                                                                              - - - - - - -

                                                                                                                                                              - - Takes a json string and returns the FsWorkbook based on its content. - +

                                                                                                                                                              + +
                                                                                                                                                              + + + + + +

                                                                                                                                                              + Takes a json string and returns the FsWorkbook based on its content. +

                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +

                                                                                                                                                              + Extended Type: + FsWorkbook

                                                                                                                                                              -
                                                                                                                                                              -

                                                                                                                                                              - Extended Type: - FsWorkbook -

                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - json - - : - string -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - Returns: - - Result<FsWorkbook, string> -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + json + + : + string +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + Returns: + + Result<FsWorkbook, string> +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + @@ -3767,7 +3584,7 @@

                                                                                                                                                              doc : - SpreadsheetDocument + SpreadsheetDocument
                                                                                                                                                              @@ -3783,7 +3600,7 @@

                                                                                                                                                              xlsxCell : - Cell + Cell
                                                                                                                                                              @@ -3798,64 +3615,63 @@

                                                                                                                                                              -
                                                                                                                                                              - - - - - - -

                                                                                                                                                              - - Creates an FsCell on the basis of an XlsxCell. Uses a SharedStringTable if present to get the XlsxCell's value. - +

                                                                                                                                                              + +
                                                                                                                                                              + + + + + +

                                                                                                                                                              + Creates an FsCell on the basis of an XlsxCell. Uses a SharedStringTable if present to get the XlsxCell's value. +

                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +

                                                                                                                                                              + Extended Type: + FsCell

                                                                                                                                                              -
                                                                                                                                                              -

                                                                                                                                                              - Extended Type: - FsCell -

                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - doc - - : - SpreadsheetDocument -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - sst - - : - SST option -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - xlsxCell - - : - Cell -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              - - Returns: - - FsCell option -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + doc + + : + SpreadsheetDocument +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + sst + + : + SST option +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + xlsxCell + + : + Cell +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + + Returns: + + FsCell option +
                                                                                                                                                              +
                                                                                                                                                              +
                                                                                                                                                              + @@ -3869,19 +3685,24 @@

                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              -
                                                                                                                                                              + + + + +
                                                                                                                                                              +
                                                                                                                                                                +

                                                                                                                                                                Type something to start searching.

                                                                                                                                                                +
                                                                                                                                                                +
                                                                                                                                                                + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-net-package.html b/reference/fsspreadsheet-net-package.html index 5b078027..68fb8e26 100644 --- a/reference/fsspreadsheet-net-package.html +++ b/reference/fsspreadsheet-net-package.html @@ -1,62 +1,50 @@ - - + - - Package (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                                -
                                                                                                                                                                - +
                                                                                                                                                                -
                                                                                                                                                                -
                                                                                                                                                                -
                                                                                                                                                                - +
                                                                                                                                                                + + + + + +
                                                                                                                                                                + + +
                                                                                                                                                                +
                                                                                                                                                                +

                                                                                                                                                                Package Module

                                                                                                                                                                @@ -134,7 +153,7 @@

                                                                                                                                                                package : - Package + Package
                                                                                                                                                                @@ -144,30 +163,13 @@

                                                                                                                                                                -
                                                                                                                                                                - - - - - - -

                                                                                                                                                                - -

                                                                                                                                                                -
                                                                                                                                                                package : - Package + Package
                                                                                                                                                                @@ -198,7 +200,7 @@

                                                                                                                                                                package : - Package + Package
                                                                                                                                                                @@ -213,30 +215,13 @@

                                                                                                                                                                -
                                                                                                                                                                - - - - - - -

                                                                                                                                                                - -

                                                                                                                                                                -
                                                                                                                                                                package : - Package + Package
                                                                                                                                                                @@ -276,7 +261,7 @@

                                                                                                                                                                package : - Package + Package
                                                                                                                                                                @@ -291,30 +276,13 @@

                                                                                                                                                                -
                                                                                                                                                                - - - - - - -

                                                                                                                                                                - -

                                                                                                                                                                -
                                                                                                                                                                package : - Package + Package
                                                                                                                                                                @@ -341,19 +309,24 @@

                                                                                                                                                                -
                                                                                                                                                                -
                                                                                                                                                                -
                                                                                                                                                                + + + + +
                                                                                                                                                                +
                                                                                                                                                                  +

                                                                                                                                                                  Type something to start searching.

                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-net-row-spans.html b/reference/fsspreadsheet-net-row-spans.html index a55abdae..21286805 100644 --- a/reference/fsspreadsheet-net-row-spans.html +++ b/reference/fsspreadsheet-net-row-spans.html @@ -1,62 +1,50 @@ - - + - - Spans (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                                  -
                                                                                                                                                                  - +
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  - +
                                                                                                                                                                  + + + + + +
                                                                                                                                                                  + + +
                                                                                                                                                                  +
                                                                                                                                                                  +

                                                                                                                                                                  Spans Module

                                                                                                                                                                  @@ -95,9 +114,7 @@

                                                                                                                                                                  - - Functions for working with spans. The spans mark the column wise area in which the row lies. - + Functions for working with spans. The spans mark the column wise area in which the row lies.

                                                                                                                                                                  @@ -150,14 +167,14 @@

                                                                                                                                                                  spans : - ListValue<StringValue> + ListValue<StringValue>

                                                                                                                                                                  Returns: - ListValue<StringValue> + ListValue<StringValue>

                                                                                                                                                                  @@ -165,52 +182,51 @@

                                                                                                                                                                  -
                                                                                                                                                                  - - - - - - -

                                                                                                                                                                  - - Extends the left boundary of the spans by the given amount (positive amount decreases the spans to left and vice versa). - -

                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  - - amount - - : - uint32 -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  - - spans - - : - ListValue<StringValue> -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  - - Returns: - - ListValue<StringValue> -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  +
                                                                                                                                                                  + +
                                                                                                                                                                  + + + + + +

                                                                                                                                                                  + Extends the left boundary of the spans by the given amount (positive amount decreases the spans to left and vice versa). +

                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  + + amount + + : + uint32 +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  + + spans + + : + ListValue<StringValue> +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  + + Returns: + + ListValue<StringValue> +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  @@ -246,14 +262,14 @@

                                                                                                                                                                  spans : - ListValue<StringValue> + ListValue<StringValue>

                                                                                                                                                                  Returns: - ListValue<StringValue> + ListValue<StringValue>

                                                                                                                                                                  @@ -261,52 +277,51 @@

                                                                                                                                                                  -
                                                                                                                                                                  - - - - - - -

                                                                                                                                                                  - - Extends the right boundary of the spans by the given amount (positive amount increases spans to right and vice versa). - -

                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  - - amount - - : - uint32 -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  - - spans - - : - ListValue<StringValue> -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  - - Returns: - - ListValue<StringValue> -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  +
                                                                                                                                                                  + +
                                                                                                                                                                  + + + + + +

                                                                                                                                                                  + Extends the right boundary of the spans by the given amount (positive amount increases spans to right and vice versa). +

                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  + + amount + + : + uint32 +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  + + spans + + : + ListValue<StringValue> +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  + + Returns: + + ListValue<StringValue> +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  @@ -349,7 +364,7 @@


                                                                                                                                                                  Returns: - ListValue<StringValue> + ListValue<StringValue>

                                                                                                                                                                  @@ -357,52 +372,51 @@

                                                                                                                                                                  -
                                                                                                                                                                  - - - - - - -

                                                                                                                                                                  - - Given 1 based column start and end indices, returns a "1:1" style spans. - -

                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  - - fromColumnIndex - - : - uint32 -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  - - toColumnIndex - - : - uint32 -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  - - Returns: - - ListValue<StringValue> -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  +
                                                                                                                                                                  + +
                                                                                                                                                                  + + + + + +

                                                                                                                                                                  + Given 1 based column start and end indices, returns a "1:1" style spans. +

                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  + + fromColumnIndex + + : + uint32 +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  + + toColumnIndex + + : + uint32 +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  + + Returns: + + ListValue<StringValue> +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  @@ -430,7 +444,7 @@

                                                                                                                                                                  spans : - ListValue<StringValue> + ListValue<StringValue>
                                                                                                                                                                  @@ -445,44 +459,43 @@

                                                                                                                                                                  -
                                                                                                                                                                  - - - - - - -

                                                                                                                                                                  - - Gets the left boundary of the spans. - -

                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  - - spans - - : - ListValue<StringValue> -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  - - Returns: - - uint32 -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  +
                                                                                                                                                                  + +
                                                                                                                                                                  + + + + + +

                                                                                                                                                                  + Gets the left boundary of the spans. +

                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  + + spans + + : + ListValue<StringValue> +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  + + Returns: + + uint32 +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  @@ -518,14 +531,14 @@

                                                                                                                                                                  spans : - ListValue<StringValue> + ListValue<StringValue>

                                                                                                                                                                  Returns: - ListValue<StringValue> + ListValue<StringValue>

                                                                                                                                                                  @@ -533,52 +546,51 @@

                                                                                                                                                                  -
                                                                                                                                                                  - - - - - - -

                                                                                                                                                                  - - Moves both start and end of the spans by the given amount (positive amount moves spans to right and vice versa). - -

                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  - - amount - - : - uint32 -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  - - spans - - : - ListValue<StringValue> -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  - - Returns: - - ListValue<StringValue> -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  +
                                                                                                                                                                  + +
                                                                                                                                                                  + + + + + +

                                                                                                                                                                  + Moves both start and end of the spans by the given amount (positive amount moves spans to right and vice versa). +

                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  + + amount + + : + uint32 +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  + + spans + + : + ListValue<StringValue> +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  + + Returns: + + ListValue<StringValue> +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  @@ -614,7 +626,7 @@

                                                                                                                                                                  spans : - ListValue<StringValue> + ListValue<StringValue>
                                                                                                                                                                  @@ -629,52 +641,51 @@

                                                                                                                                                                  -
                                                                                                                                                                  - - - - - - -

                                                                                                                                                                  - - Returns true if the column index of the reference does not lie in the boundary of the spans. - -

                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  - - reference - - : - string -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  - - spans - - : - ListValue<StringValue> -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  - - Returns: - - bool -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  +
                                                                                                                                                                  + +
                                                                                                                                                                  + + + + + +

                                                                                                                                                                  + Returns true if the column index of the reference does not lie in the boundary of the spans. +

                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  + + reference + + : + string +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  + + spans + + : + ListValue<StringValue> +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  + + Returns: + + bool +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  @@ -710,7 +721,7 @@

                                                                                                                                                                  spans : - ListValue<StringValue> + ListValue<StringValue>
                                                                                                                                                                  @@ -725,52 +736,51 @@

                                                                                                                                                                  -
                                                                                                                                                                  - - - - - - -

                                                                                                                                                                  - - Returns true if the column index of the reference exceeds the left boundary of the spans. - -

                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  - - reference - - : - string -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  - - spans - - : - ListValue<StringValue> -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  - - Returns: - - bool -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  +
                                                                                                                                                                  + +
                                                                                                                                                                  + + + + + +

                                                                                                                                                                  + Returns true if the column index of the reference exceeds the left boundary of the spans. +

                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  + + reference + + : + string +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  + + spans + + : + ListValue<StringValue> +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  + + Returns: + + bool +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  @@ -806,7 +816,7 @@

                                                                                                                                                                  spans : - ListValue<StringValue> + ListValue<StringValue>
                                                                                                                                                                  @@ -821,52 +831,51 @@

                                                                                                                                                                  -
                                                                                                                                                                  - - - - - - -

                                                                                                                                                                  - - Returns true if the column index of the reference exceeds the right boundary of the spans. - -

                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  - - reference - - : - string -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  - - spans - - : - ListValue<StringValue> -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  - - Returns: - - bool -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  +
                                                                                                                                                                  + +
                                                                                                                                                                  + + + + + +

                                                                                                                                                                  + Returns true if the column index of the reference exceeds the right boundary of the spans. +

                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  + + reference + + : + string +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  + + spans + + : + ListValue<StringValue> +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  + + Returns: + + bool +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  @@ -894,7 +903,7 @@

                                                                                                                                                                  spans : - ListValue<StringValue> + ListValue<StringValue>
                                                                                                                                                                  @@ -909,44 +918,43 @@

                                                                                                                                                                  -
                                                                                                                                                                  - - - - - - -

                                                                                                                                                                  - - Gets the right boundary of the spans. - -

                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  - - spans - - : - ListValue<StringValue> -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  - - Returns: - - uint32 -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  +
                                                                                                                                                                  + +
                                                                                                                                                                  + + + + + +

                                                                                                                                                                  + Gets the right boundary of the spans. +

                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  + + spans + + : + ListValue<StringValue> +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  + + Returns: + + uint32 +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  @@ -974,7 +982,7 @@

                                                                                                                                                                  spans : - ListValue<StringValue> + ListValue<StringValue>
                                                                                                                                                                  @@ -989,44 +997,43 @@

                                                                                                                                                                  -
                                                                                                                                                                  - - - - - - -

                                                                                                                                                                  - - Given a "1:1" style spans, returns 1 based column start and end indices. - -

                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  - - spans - - : - ListValue<StringValue> -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  - - Returns: - - uint32 * uint32 -
                                                                                                                                                                  -
                                                                                                                                                                  -
                                                                                                                                                                  +
                                                                                                                                                                  + +
                                                                                                                                                                  + + + + + +

                                                                                                                                                                  + Given a "1:1" style spans, returns 1 based column start and end indices. +

                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  + + spans + + : + ListValue<StringValue> +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  + + Returns: + + uint32 * uint32 +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  +
                                                                                                                                                                  @@ -1041,19 +1048,24 @@

                                                                                                                                                                  -
                                                                                                                                                                  -

                                                                                                                                                                  -

                                                                                                                                                                  + + + + +
                                                                                                                                                                  +
                                                                                                                                                                    +

                                                                                                                                                                    Type something to start searching.

                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-net-row.html b/reference/fsspreadsheet-net-row.html index c6ae4b64..46df48ad 100644 --- a/reference/fsspreadsheet-net-row.html +++ b/reference/fsspreadsheet-net-row.html @@ -1,62 +1,50 @@ - - + - - Row (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                                    -
                                                                                                                                                                    - +
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - +
                                                                                                                                                                    + + + + + +
                                                                                                                                                                    + + +
                                                                                                                                                                    +
                                                                                                                                                                    +

                                                                                                                                                                    Row Module

                                                                                                                                                                    @@ -89,9 +108,7 @@

                                                                                                                                                                    - - Functions for working with rows (unmanaged: spans and cell references do not get automatically updated). - + Functions for working with rows (unmanaged: spans and cell references do not get automatically updated).

                                                                                                                                                                    @@ -124,21 +141,16 @@

                                                                                                                                                                    - - +

                                                                                                                                                                    - - Functions for working with spans. The spans mark the column wise area in which the row lies. - + Functions for working with spans. The spans mark the column wise area in which the row lies.

                                                                                                                                                                    @@ -187,7 +199,7 @@

                                                                                                                                                                    cell : - Cell + Cell
                                                                                                                                                                    @@ -195,14 +207,14 @@

                                                                                                                                                                    row : - Row + Row

                                                                                                                                                                    Returns: - Row + Row

                                                                                                                                                                    @@ -210,52 +222,51 @@

                                                                                                                                                                    -
                                                                                                                                                                    - - - - - - -

                                                                                                                                                                    - - Append cell to the end of the row. - -

                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - cell - - : - Cell -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - row - - : - Row -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - Returns: - - Row -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    +
                                                                                                                                                                    + +
                                                                                                                                                                    + + + + + +

                                                                                                                                                                    + Append cell to the end of the row. +

                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + cell + + : + Cell +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + row + + : + Row +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + Returns: + + Row +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    @@ -283,7 +294,7 @@

                                                                                                                                                                    sst : - Option<SharedStringTable> + Option<SharedStringTable>
                                                                                                                                                                    @@ -299,14 +310,14 @@

                                                                                                                                                                    row : - Row + Row

                                                                                                                                                                    Returns: - Row + Row

                                                                                                                                                                    @@ -314,60 +325,59 @@

                                                                                                                                                                    -
                                                                                                                                                                    - - - - - - -

                                                                                                                                                                    - - Adds a value as a cell to the end of the row. - -

                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - sst - - : - Option<SharedStringTable> -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - value - - : - 'T -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - row - - : - Row -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - Returns: - - Row -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    +
                                                                                                                                                                    + +
                                                                                                                                                                    + + + + + +

                                                                                                                                                                    + Adds a value as a cell to the end of the row. +

                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + sst + + : + Option<SharedStringTable> +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + value + + : + 'T +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + row + + : + Row +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + Returns: + + Row +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    @@ -403,7 +413,7 @@

                                                                                                                                                                    row : - Row + Row
                                                                                                                                                                    @@ -418,52 +428,51 @@

                                                                                                                                                                    -
                                                                                                                                                                    - - - - - - -

                                                                                                                                                                    - - Returns true if the row contains a cell with the given columnIndex. - -

                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - columnIndex - - : - uint32 -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - row - - : - Row -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - Returns: - - bool -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    +
                                                                                                                                                                    + +
                                                                                                                                                                    + + + + + +

                                                                                                                                                                    + Returns true if the row contains a cell with the given columnIndex. +

                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + columnIndex + + : + uint32 +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + row + + : + Row +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + Returns: + + bool +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    @@ -499,7 +508,7 @@

                                                                                                                                                                    spans : - ListValue<StringValue> + ListValue<StringValue>
                                                                                                                                                                    @@ -507,14 +516,14 @@

                                                                                                                                                                    cells : - seq<Cell> + Cell seq

                                                                                                                                                                    Returns: - Row + Row

                                                                                                                                                                    @@ -522,60 +531,59 @@

                                                                                                                                                                    -
                                                                                                                                                                    - - - - - - -

                                                                                                                                                                    - - Creates a row from the given rowIndex, columnSpans, and cells. - -

                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - index - - : - uint32 -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - spans - - : - ListValue<StringValue> -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - cells - - : - seq<Cell> -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - Returns: - - Row -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    +
                                                                                                                                                                    + +
                                                                                                                                                                    + + + + + +

                                                                                                                                                                    + Creates a row from the given rowIndex, columnSpans, and cells. +

                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + index + + : + uint32 +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + spans + + : + ListValue<StringValue> +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + cells + + : + Cell seq +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + Returns: + + Row +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    @@ -610,7 +618,7 @@


                                                                                                                                                                    Returns: - Row + Row

                                                                                                                                                                    @@ -618,44 +626,43 @@

                                                                                                                                                                    -
                                                                                                                                                                    - - - - - - -

                                                                                                                                                                    - - Creates an empty Row. - -

                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - () - - : - unit -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - Returns: - - Row -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    +
                                                                                                                                                                    + +
                                                                                                                                                                    + + + + + +

                                                                                                                                                                    + Creates an empty Row. +

                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + () + + : + unit +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + Returns: + + Row +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    @@ -691,14 +698,14 @@

                                                                                                                                                                    row : - Row + Row

                                                                                                                                                                    Returns: - Row + Row

                                                                                                                                                                    @@ -706,52 +713,51 @@

                                                                                                                                                                    -
                                                                                                                                                                    - - - - - - -

                                                                                                                                                                    - - Extends the left boundary of the spans of the row by the given amount (positive amount decreases the spans to left and vice versa). - -

                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - amount - - : - uint32 -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - row - - : - Row -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - Returns: - - Row -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    +
                                                                                                                                                                    + +
                                                                                                                                                                    + + + + + +

                                                                                                                                                                    + Extends the left boundary of the spans of the row by the given amount (positive amount decreases the spans to left and vice versa). +

                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + amount + + : + uint32 +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + row + + : + Row +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + Returns: + + Row +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    @@ -787,14 +793,14 @@

                                                                                                                                                                    row : - Row + Row

                                                                                                                                                                    Returns: - Row + Row

                                                                                                                                                                    @@ -802,52 +808,51 @@

                                                                                                                                                                    -
                                                                                                                                                                    - - - - - - -

                                                                                                                                                                    - - Extends the right boundary of the spans of the row by the given amount (positive amount increases spans to right and vice versa). - -

                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - amount - - : - uint32 -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - row - - : - Row -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - Returns: - - Row -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    +
                                                                                                                                                                    + +
                                                                                                                                                                    + + + + + +

                                                                                                                                                                    + Extends the right boundary of the spans of the row by the given amount (positive amount increases spans to right and vice versa). +

                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + amount + + : + uint32 +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + row + + : + Row +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + Returns: + + Row +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    @@ -875,7 +880,7 @@

                                                                                                                                                                    predicate : - Cell -> bool + Cell -> bool
                                                                                                                                                                    @@ -883,14 +888,14 @@

                                                                                                                                                                    row : - Row + Row

                                                                                                                                                                    Returns: - Cell + Cell

                                                                                                                                                                    @@ -898,52 +903,51 @@

                                                                                                                                                                    -
                                                                                                                                                                    - - - - - - -

                                                                                                                                                                    - - Returns the first cell in the row for which the predicate returns true. - -

                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - predicate - - : - Cell -> bool -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - row - - : - Row -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - Returns: - - Cell -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    +
                                                                                                                                                                    + +
                                                                                                                                                                    + + + + + +

                                                                                                                                                                    + Returns the first cell in the row for which the predicate returns true. +

                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + predicate + + : + Cell -> bool +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + row + + : + Row +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + Returns: + + Cell +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    @@ -979,14 +983,14 @@

                                                                                                                                                                    row : - Row + Row

                                                                                                                                                                    Returns: - Cell + Cell

                                                                                                                                                                    @@ -994,52 +998,51 @@

                                                                                                                                                                    -
                                                                                                                                                                    - - - - - - -

                                                                                                                                                                    - - Returns cell with the given columnIndex. - -

                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - columnIndex - - : - uint32 -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - row - - : - Row -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - Returns: - - Cell -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    +
                                                                                                                                                                    + +
                                                                                                                                                                    + + + + + +

                                                                                                                                                                    + Returns cell with the given columnIndex. +

                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + columnIndex + + : + uint32 +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + row + + : + Row +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + Returns: + + Cell +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    @@ -1067,7 +1070,7 @@

                                                                                                                                                                    row : - Row + Row
                                                                                                                                                                    @@ -1082,44 +1085,43 @@

                                                                                                                                                                    -
                                                                                                                                                                    - - - - - - -

                                                                                                                                                                    - - Returns the rowIndex of the row. - -

                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - row - - : - Row -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - Returns: - - uint32 -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    +
                                                                                                                                                                    + +
                                                                                                                                                                    + + + + + +

                                                                                                                                                                    + Returns the rowIndex of the row. +

                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + row + + : + Row +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + Returns: + + uint32 +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    @@ -1155,14 +1157,14 @@

                                                                                                                                                                    row : - Row + Row

                                                                                                                                                                    Returns: - seq<uint32 * string> + (uint32 * string) seq

                                                                                                                                                                    @@ -1170,52 +1172,51 @@

                                                                                                                                                                    -
                                                                                                                                                                    - - - - - - -

                                                                                                                                                                    - - Maps the cells of the given row to tuples of 1-based column indices and the value strings using a sharedStringTable. - -

                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - sst - - : - Option<SST> -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - row - - : - Row -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - Returns: - - seq<uint32 * string> -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    +
                                                                                                                                                                    + +
                                                                                                                                                                    + + + + + +

                                                                                                                                                                    + Maps the cells of the given row to tuples of 1-based column indices and the value strings using a sharedStringTable. +

                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + sst + + : + Option<SST> +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + row + + : + Row +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + Returns: + + (uint32 * string) seq +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    @@ -1251,14 +1252,14 @@

                                                                                                                                                                    row : - Row + Row

                                                                                                                                                                    Returns: - seq<string> + string seq

                                                                                                                                                                    @@ -1266,52 +1267,51 @@

                                                                                                                                                                    -
                                                                                                                                                                    - - - - - - -

                                                                                                                                                                    - - Maps the cells of the given row to the value strings for all existing cells. - -

                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - sst - - : - SST option -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - row - - : - Row -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - Returns: - - seq<string> -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    +
                                                                                                                                                                    + +
                                                                                                                                                                    + + + + + +

                                                                                                                                                                    + Maps the cells of the given row to the value strings for all existing cells. +

                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + sst + + : + SST option +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + row + + : + Row +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + Returns: + + string seq +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    @@ -1347,14 +1347,14 @@

                                                                                                                                                                    row : - Row + Row

                                                                                                                                                                    Returns: - seq<string> + string seq

                                                                                                                                                                    @@ -1362,52 +1362,51 @@

                                                                                                                                                                    -
                                                                                                                                                                    - - - - - - -

                                                                                                                                                                    - - Maps the cells of the given row to the value strings. - -

                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - sst - - : - Option<SST> -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - row - - : - Row -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - Returns: - - seq<string> -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    +
                                                                                                                                                                    + +
                                                                                                                                                                    + + + + + +

                                                                                                                                                                    + Maps the cells of the given row to the value strings. +

                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + sst + + : + Option<SST> +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + row + + : + Row +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + Returns: + + string seq +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    @@ -1435,14 +1434,14 @@

                                                                                                                                                                    row : - Row + Row

                                                                                                                                                                    Returns: - ListValue<StringValue> + ListValue<StringValue>
                                                                                                                                                                    @@ -1450,44 +1449,43 @@

                                                                                                                                                                    -
                                                                                                                                                                    - - - - - - -

                                                                                                                                                                    - - Returns the spans of the row. - -

                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - row - - : - Row -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - Returns: - - ListValue<StringValue> -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    +
                                                                                                                                                                    + +
                                                                                                                                                                    + + + + + +

                                                                                                                                                                    + Returns the spans of the row. +

                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + row + + : + Row +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + Returns: + + ListValue<StringValue> +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    @@ -1523,14 +1521,14 @@

                                                                                                                                                                    row : - Row + Row

                                                                                                                                                                    Returns: - Row + Row
                                                                                                                                                                    @@ -1538,52 +1536,51 @@

                                                                                                                                                                    -
                                                                                                                                                                    - - - - - - -

                                                                                                                                                                    - - Includes a value from a sharedStringTable in the cells of the row. - -

                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - sst - - : - SST -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - row - - : - Row -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - Returns: - - Row -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    +
                                                                                                                                                                    + +
                                                                                                                                                                    + + + + + +

                                                                                                                                                                    + Includes a value from a sharedStringTable in the cells of the row. +

                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + sst + + : + SST +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + row + + : + Row +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + Returns: + + Row +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    @@ -1611,7 +1608,7 @@

                                                                                                                                                                    newCell : - OpenXmlElement + OpenXmlElement
                                                                                                                                                                    @@ -1619,7 +1616,7 @@

                                                                                                                                                                    refCell : - OpenXmlElement + OpenXmlElement
                                                                                                                                                                    @@ -1627,14 +1624,14 @@

                                                                                                                                                                    row : - Row + Row

                                                                                                                                                                    Returns: - Row + Row
                                                                                                                                                                    @@ -1642,60 +1639,59 @@

                                                                                                                                                                    -
                                                                                                                                                                    - - - - - - -

                                                                                                                                                                    - - Inserts a cell into the row before a reference cell. - -

                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - newCell - - : - OpenXmlElement -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - refCell - - : - OpenXmlElement -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - row - - : - Row -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - Returns: - - Row -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    +
                                                                                                                                                                    + +
                                                                                                                                                                    + + + + + +

                                                                                                                                                                    + Inserts a cell into the row before a reference cell. +

                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + newCell + + : + OpenXmlElement +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + refCell + + : + OpenXmlElement +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + row + + : + Row +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + Returns: + + Row +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    @@ -1723,7 +1719,7 @@

                                                                                                                                                                    sst : - Option<SharedStringTable> + Option<SharedStringTable>
                                                                                                                                                                    @@ -1747,14 +1743,14 @@

                                                                                                                                                                    row : - Row + Row

                                                                                                                                                                    Returns: - Row + Row
                                                                                                                                                                    @@ -1762,71 +1758,70 @@

                                                                                                                                                                    -
                                                                                                                                                                    - - - - - - -

                                                                                                                                                                    - - Adds a value as a cell to the row at the given columnIndex. +

                                                                                                                                                                    + +
                                                                                                                                                                    + + + + + +

                                                                                                                                                                    + Adds a value as a cell to the row at the given columnIndex. If a cell exists at the given columnIndex, shoves it to the right. - -

                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - sst - - : - Option<SharedStringTable> -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - index - - : - uint32 -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - value - - : - 'T -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - row - - : - Row -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - Returns: - - Row -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - +

                                                                                                                                                                    +
                                                                                                                                                                    + +
                                                                                                                                                                    +
                                                                                                                                                                    + + sst + + : + Option<SharedStringTable> +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + index + + : + uint32 +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + value + + : + 'T +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + row + + : + Row +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + Returns: + + Row +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + @@ -1853,7 +1848,7 @@

                                                                                                                                                                    sst : - Option<SharedStringTable> + Option<SharedStringTable>
                                                                                                                                                                    @@ -1877,14 +1872,14 @@

                                                                                                                                                                    row : - Row + Row

                                                                                                                                                                    Returns: - Row + Row
                                                                                                                                                                    @@ -1892,70 +1887,69 @@

                                                                                                                                                                    -
                                                                                                                                                                    - - - - - - -

                                                                                                                                                                    - - Adds a value as a cell to the row at the given columnindex using a sharedStringTable. +

                                                                                                                                                                    + +
                                                                                                                                                                    + + + + + +

                                                                                                                                                                    + Adds a value as a cell to the row at the given columnindex using a sharedStringTable. If a cell exists at the given columnindex, shoves it to the right. - -

                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - sst - - : - Option<SharedStringTable> -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - index - - : - uint32 -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - value - - : - 'T -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - row - - : - Row -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - Returns: - - Row -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    +

                                                                                                                                                                    +
                                                                                                                                                                    + +
                                                                                                                                                                    +
                                                                                                                                                                    + + sst + + : + Option<SharedStringTable> +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + index + + : + uint32 +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + value + + : + 'T +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + row + + : + Row +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + Returns: + + Row +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + @@ -1983,7 +1977,7 @@

                                                                                                                                                                    row : - Row + Row
                                                                                                                                                                    @@ -1998,44 +1992,43 @@

                                                                                                                                                                    -
                                                                                                                                                                    - - - - - - -

                                                                                                                                                                    - - Returns true if the row contains no cells. - -

                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - row - - : - Row -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - Returns: - - bool -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    +
                                                                                                                                                                    + +
                                                                                                                                                                    + + + + + +

                                                                                                                                                                    + Returns true if the row contains no cells. +

                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + row + + : + Row +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + Returns: + + bool +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    @@ -2063,7 +2056,7 @@

                                                                                                                                                                    f : - Cell -> unit + Cell -> unit
                                                                                                                                                                    @@ -2071,14 +2064,14 @@

                                                                                                                                                                    row : - Row + Row

                                                                                                                                                                    Returns: - Row + Row
                                                                                                                                                                    @@ -2086,52 +2079,51 @@

                                                                                                                                                                    -
                                                                                                                                                                    - - - - - - -

                                                                                                                                                                    - - Iterates through all cells of a row with the given function f. - -

                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - f - - : - Cell -> unit -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - row - - : - Row -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - Returns: - - Row -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    +
                                                                                                                                                                    + +
                                                                                                                                                                    + + + + + +

                                                                                                                                                                    + Iterates through all cells of a row with the given function f. +

                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + f + + : + Cell -> unit +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + row + + : + Row +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + Returns: + + Row +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    @@ -2159,7 +2151,7 @@

                                                                                                                                                                    f : - Cell -> Cell + Cell -> Cell
                                                                                                                                                                    @@ -2167,14 +2159,14 @@

                                                                                                                                                                    row : - Row + Row

                                                                                                                                                                    Returns: - Row + Row
                                                                                                                                                                    @@ -2182,52 +2174,51 @@

                                                                                                                                                                    -
                                                                                                                                                                    - - - - - - -

                                                                                                                                                                    - - Applies the function f to all cells of a row. - -

                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - f - - : - Cell -> Cell -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - row - - : - Row -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - Returns: - - Row -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    +
                                                                                                                                                                    + +
                                                                                                                                                                    + + + + + +

                                                                                                                                                                    + Applies the function f to all cells of a row. +

                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + f + + : + Cell -> Cell +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + row + + : + Row +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + Returns: + + Row +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    @@ -2263,14 +2254,14 @@

                                                                                                                                                                    row : - Row + Row

                                                                                                                                                                    Returns: - Row + Row
                                                                                                                                                                    @@ -2278,54 +2269,53 @@

                                                                                                                                                                    -
                                                                                                                                                                    - - - - - - -

                                                                                                                                                                    - - If a cell with the given columnIndex exists in the row, moves it one column to the right. +

                                                                                                                                                                    + +
                                                                                                                                                                    + + + + + +

                                                                                                                                                                    + If a cell with the given columnIndex exists in the row, moves it one column to the right. 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. - -

                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - columnIndex - - : - uint32 -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - row - - : - Row -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - Returns: - - Row -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    +

                                                                                                                                                                    +
                                                                                                                                                                    + +
                                                                                                                                                                    +
                                                                                                                                                                    + + columnIndex + + : + uint32 +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + row + + : + Row +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + Returns: + + Row +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + @@ -2369,14 +2359,14 @@

                                                                                                                                                                    row : - Row + Row

                                                                                                                                                                    Returns: - Row + Row
                                                                                                                                                                    @@ -2384,60 +2374,59 @@

                                                                                                                                                                    -
                                                                                                                                                                    - - - - - - -

                                                                                                                                                                    - - Moves all cells starting with the given columnIndex in the row to the right by the given offset. - -

                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - columnIndex - - : - uint32 -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - offset - - : - uint32 -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - row - - : - Row -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - Returns: - - Row -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    +
                                                                                                                                                                    + +
                                                                                                                                                                    + + + + + +

                                                                                                                                                                    + Moves all cells starting with the given columnIndex in the row to the right by the given offset. +

                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + columnIndex + + : + uint32 +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + offset + + : + uint32 +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + row + + : + Row +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + Returns: + + Row +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    @@ -2465,7 +2454,7 @@

                                                                                                                                                                    sst : - Option<SharedStringTable> + Option<SharedStringTable>
                                                                                                                                                                    @@ -2481,14 +2470,14 @@

                                                                                                                                                                    vals : - seq<'T> + 'T seq

                                                                                                                                                                    Returns: - Row + Row
                                                                                                                                                                    @@ -2496,60 +2485,59 @@

                                                                                                                                                                    -
                                                                                                                                                                    - - - - - - -

                                                                                                                                                                    - - Creates a new row from the given values. - -

                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - sst - - : - Option<SharedStringTable> -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - rowIndex - - : - uint32 -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - vals - - : - seq<'T> -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - Returns: - - Row -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    +
                                                                                                                                                                    + +
                                                                                                                                                                    + + + + + +

                                                                                                                                                                    + Creates a new row from the given values. +

                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + sst + + : + Option<SharedStringTable> +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + rowIndex + + : + uint32 +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + vals + + : + 'T seq +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + Returns: + + Row +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    @@ -2585,14 +2573,14 @@

                                                                                                                                                                    row : - Row + Row

                                                                                                                                                                    Returns: - Row + Row
                                                                                                                                                                    @@ -2600,52 +2588,51 @@

                                                                                                                                                                    -
                                                                                                                                                                    - - - - - - -

                                                                                                                                                                    - - Removes the cell at the given columnIndex from the row. - -

                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - index - - : - uint32 -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - row - - : - Row -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - Returns: - - Row -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    +
                                                                                                                                                                    + +
                                                                                                                                                                    + + + + + +

                                                                                                                                                                    + Removes the cell at the given columnIndex from the row. +

                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + index + + : + uint32 +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + row + + : + Row +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + Returns: + + Row +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    @@ -2681,14 +2668,14 @@

                                                                                                                                                                    row : - Row + Row

                                                                                                                                                                    Returns: - Row + Row
                                                                                                                                                                    @@ -2696,52 +2683,51 @@

                                                                                                                                                                    -
                                                                                                                                                                    - - - - - - -

                                                                                                                                                                    - - Sets the rowIndex of the row - -

                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - index - - : - uint32 -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - row - - : - Row -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - Returns: - - Row -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    +
                                                                                                                                                                    + +
                                                                                                                                                                    + + + + + +

                                                                                                                                                                    + Sets the rowIndex of the row +

                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + index + + : + uint32 +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + row + + : + Row +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + Returns: + + Row +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    @@ -2769,7 +2755,7 @@

                                                                                                                                                                    spans : - ListValue<StringValue> + ListValue<StringValue>
                                                                                                                                                                    @@ -2777,14 +2763,14 @@

                                                                                                                                                                    row : - Row + Row

                                                                                                                                                                    Returns: - Row + Row
                                                                                                                                                                    @@ -2792,52 +2778,51 @@

                                                                                                                                                                    -
                                                                                                                                                                    - - - - - - -

                                                                                                                                                                    - - Sets the spans of the row. - -

                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - spans - - : - ListValue<StringValue> -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - row - - : - Row -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - Returns: - - Row -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    +
                                                                                                                                                                    + +
                                                                                                                                                                    + + + + + +

                                                                                                                                                                    + Sets the spans of the row. +

                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + spans + + : + ListValue<StringValue> +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + row + + : + Row +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + Returns: + + Row +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    @@ -2865,7 +2850,7 @@

                                                                                                                                                                    sst : - Option<SharedStringTable> + Option<SharedStringTable>
                                                                                                                                                                    @@ -2889,14 +2874,14 @@

                                                                                                                                                                    row : - Row + Row

                                                                                                                                                                    Returns: - Row + Row
                                                                                                                                                                    @@ -2904,70 +2889,69 @@

                                                                                                                                                                    -
                                                                                                                                                                    - - - - - - -

                                                                                                                                                                    - - Add a value as a cell to the row at the given columnIndex. +

                                                                                                                                                                    + +
                                                                                                                                                                    + + + + + +

                                                                                                                                                                    + Add a value as a cell to the row at the given columnIndex. If a cell exists at the given columnIndex, overwrites it. - -

                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - sst - - : - Option<SharedStringTable> -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - index - - : - uint32 -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - value - - : - 'T -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - row - - : - Row -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - Returns: - - Row -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    +

                                                                                                                                                                    +
                                                                                                                                                                    + +
                                                                                                                                                                    +
                                                                                                                                                                    + + sst + + : + Option<SharedStringTable> +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + index + + : + uint32 +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + value + + : + 'T +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + row + + : + Row +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + Returns: + + Row +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + @@ -2995,14 +2979,14 @@

                                                                                                                                                                    row : - Row + Row

                                                                                                                                                                    Returns: - seq<Cell> + Cell seq
                                                                                                                                                                    @@ -3010,44 +2994,43 @@

                                                                                                                                                                    -
                                                                                                                                                                    - - - - - - -

                                                                                                                                                                    - - Returns a sequence of cells contained in the row. - -

                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - row - - : - Row -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - Returns: - - seq<Cell> -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    +
                                                                                                                                                                    + +
                                                                                                                                                                    + + + + + +

                                                                                                                                                                    + Returns a sequence of cells contained in the row. +

                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + row + + : + Row +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + Returns: + + Cell seq +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    @@ -3083,14 +3066,14 @@

                                                                                                                                                                    row : - Row + Row

                                                                                                                                                                    Returns: - Cell option + Cell option
                                                                                                                                                                    @@ -3098,52 +3081,51 @@

                                                                                                                                                                    -
                                                                                                                                                                    - - - - - - -

                                                                                                                                                                    - - Returns cell matching or exceeding the given column index if it exists, else returns none. - -

                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - columnIndex - - : - uint32 -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - row - - : - Row -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - Returns: - - Cell option -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    +
                                                                                                                                                                    + +
                                                                                                                                                                    + + + + + +

                                                                                                                                                                    + Returns cell matching or exceeding the given column index if it exists, else returns none. +

                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + columnIndex + + : + uint32 +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + row + + : + Row +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + Returns: + + Cell option +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    @@ -3179,14 +3161,14 @@

                                                                                                                                                                    row : - Row + Row

                                                                                                                                                                    Returns: - Cell option + Cell option
                                                                                                                                                                    @@ -3194,52 +3176,51 @@

                                                                                                                                                                    -
                                                                                                                                                                    - - - - - - -

                                                                                                                                                                    - - Returns cell with the given columnIndex if it exists, else returns none. - -

                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - columnIndex - - : - uint32 -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - row - - : - Row -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - Returns: - - Cell option -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    +
                                                                                                                                                                    + +
                                                                                                                                                                    + + + + + +

                                                                                                                                                                    + Returns cell with the given columnIndex if it exists, else returns none. +

                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + columnIndex + + : + uint32 +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + row + + : + Row +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + Returns: + + Cell option +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    @@ -3275,14 +3256,14 @@

                                                                                                                                                                    row : - Row + Row

                                                                                                                                                                    Returns: - seq<string option> + string option seq
                                                                                                                                                                    @@ -3290,52 +3271,51 @@

                                                                                                                                                                    -
                                                                                                                                                                    - - - - - - -

                                                                                                                                                                    - - Maps each cell of the given row to each respective value strings if it exists, else returns None. - -

                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - sst - - : - SST option -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - row - - : - Row -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - Returns: - - seq<string option> -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    +
                                                                                                                                                                    + +
                                                                                                                                                                    + + + + + +

                                                                                                                                                                    + Maps each cell of the given row to each respective value strings if it exists, else returns None. +

                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + sst + + : + SST option +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + row + + : + Row +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + Returns: + + string option seq +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    @@ -3379,7 +3359,7 @@

                                                                                                                                                                    row : - Row + Row
                                                                                                                                                                    @@ -3394,60 +3374,59 @@

                                                                                                                                                                    -
                                                                                                                                                                    - - - - - - -

                                                                                                                                                                    - - If the row contains a value at the given index, returns it. Returns none if not. - -

                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - sst - - : - Option<SST> -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - index - - : - uint32 -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - row - - : - Row -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - Returns: - - string option -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    +
                                                                                                                                                                    + +
                                                                                                                                                                    + + + + + +

                                                                                                                                                                    + If the row contains a value at the given index, returns it. Returns none if not. +

                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + sst + + : + Option<SST> +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + index + + : + uint32 +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + row + + : + Row +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + Returns: + + string option +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    @@ -3483,14 +3462,14 @@

                                                                                                                                                                    row : - Row + Row

                                                                                                                                                                    Returns: - Row option + Row option
                                                                                                                                                                    @@ -3498,52 +3477,51 @@

                                                                                                                                                                    -
                                                                                                                                                                    - - - - - - -

                                                                                                                                                                    - - Removes the cell at the given columnIndex from the row if present. Returns none if not. - -

                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - index - - : - uint32 -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - row - - : - Row -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - Returns: - - Row option -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    +
                                                                                                                                                                    + +
                                                                                                                                                                    + + + + + +

                                                                                                                                                                    + Removes the cell at the given columnIndex from the row if present. Returns none if not. +

                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + index + + : + uint32 +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + row + + : + Row +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + Returns: + + Row option +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    @@ -3579,14 +3557,14 @@

                                                                                                                                                                    row : - Row + Row

                                                                                                                                                                    Returns: - Row + Row
                                                                                                                                                                    @@ -3594,52 +3572,51 @@

                                                                                                                                                                    -
                                                                                                                                                                    - - - - - - -

                                                                                                                                                                    - - Sets the rowIndex of the row and the row indices of the cells in the row to the given 1-based index. - -

                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - newIndex - - : - uint32 -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - row - - : - Row -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - Returns: - - Row -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    +
                                                                                                                                                                    + +
                                                                                                                                                                    + + + + + +

                                                                                                                                                                    + Sets the rowIndex of the row and the row indices of the cells in the row to the given 1-based index. +

                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + newIndex + + : + uint32 +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + row + + : + Row +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + Returns: + + Row +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    @@ -3667,14 +3644,14 @@

                                                                                                                                                                    row : - Row + Row

                                                                                                                                                                    Returns: - Row + Row
                                                                                                                                                                    @@ -3682,44 +3659,43 @@

                                                                                                                                                                    -
                                                                                                                                                                    - - - - - - -

                                                                                                                                                                    - - Matches the rowSpan to the cell references inside the row. - -

                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - row - - : - Row -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    - - Returns: - - Row -
                                                                                                                                                                    -
                                                                                                                                                                    -
                                                                                                                                                                    +
                                                                                                                                                                    + +
                                                                                                                                                                    + + + + + +

                                                                                                                                                                    + Matches the rowSpan to the cell references inside the row. +

                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + row + + : + Row +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    + + Returns: + + Row +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    +
                                                                                                                                                                    @@ -3734,19 +3710,24 @@

                                                                                                                                                                    - - - + + + + +
                                                                                                                                                                    +
                                                                                                                                                                      +

                                                                                                                                                                      Type something to start searching.

                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-net-sharedstringtable-sharedstringitem.html b/reference/fsspreadsheet-net-sharedstringtable-sharedstringitem.html index 3bf75aaf..6778d4c8 100644 --- a/reference/fsspreadsheet-net-sharedstringtable-sharedstringitem.html +++ b/reference/fsspreadsheet-net-sharedstringtable-sharedstringitem.html @@ -1,62 +1,50 @@ - - + - - SharedStringItem (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                                      -
                                                                                                                                                                      - +
                                                                                                                                                                      -
                                                                                                                                                                      -
                                                                                                                                                                      -
                                                                                                                                                                      - +
                                                                                                                                                                      + + + + + +
                                                                                                                                                                      + + +
                                                                                                                                                                      +
                                                                                                                                                                      +

                                                                                                                                                                      SharedStringItem Module

                                                                                                                                                                      @@ -95,9 +114,7 @@

                                                                                                                                                                      - - Functions for working with SharedStringItems. - + Functions for working with SharedStringItems.

                                                                                                                                                                      @@ -142,7 +159,7 @@

                                                                                                                                                                      sharedStringItem : - SharedStringItem + SharedStringItem
                                                                                                                                                                      @@ -150,14 +167,14 @@

                                                                                                                                                                      sst : - SharedStringTable + SharedStringTable

                                                                                                                                                                      Returns: - SharedStringTable + SharedStringTable

                                                                                                                                                                      @@ -165,52 +182,51 @@

                                                                                                                                                                      -
                                                                                                                                                                      - - - - - - -

                                                                                                                                                                      - - Adds the sharedStringItem to the sharedStringTable. - -

                                                                                                                                                                      -
                                                                                                                                                                      -
                                                                                                                                                                      -
                                                                                                                                                                      - - sharedStringItem - - : - SharedStringItem -
                                                                                                                                                                      -
                                                                                                                                                                      -
                                                                                                                                                                      - - sst - - : - SharedStringTable -
                                                                                                                                                                      -
                                                                                                                                                                      -
                                                                                                                                                                      -
                                                                                                                                                                      -
                                                                                                                                                                      - - Returns: - - SharedStringTable -
                                                                                                                                                                      -
                                                                                                                                                                      -
                                                                                                                                                                      +
                                                                                                                                                                      + +
                                                                                                                                                                      + + + + + +

                                                                                                                                                                      + Adds the sharedStringItem to the sharedStringTable. +

                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + + sharedStringItem + + : + SharedStringItem +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + + sst + + : + SharedStringTable +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + + Returns: + + SharedStringTable +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      @@ -245,7 +261,7 @@


                                                                                                                                                                      Returns: - SharedStringItem + SharedStringItem

                                                                                                                                                                      @@ -253,44 +269,43 @@

                                                                                                                                                                      -
                                                                                                                                                                      - - - - - - -

                                                                                                                                                                      - - Creates a sharedStringItem containing the given string. - -

                                                                                                                                                                      -
                                                                                                                                                                      -
                                                                                                                                                                      -
                                                                                                                                                                      - - text - - : - string -
                                                                                                                                                                      -
                                                                                                                                                                      -
                                                                                                                                                                      -
                                                                                                                                                                      -
                                                                                                                                                                      - - Returns: - - SharedStringItem -
                                                                                                                                                                      -
                                                                                                                                                                      -
                                                                                                                                                                      +
                                                                                                                                                                      + +
                                                                                                                                                                      + + + + + +

                                                                                                                                                                      + Creates a sharedStringItem containing the given string. +

                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + + text + + : + string +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + + Returns: + + SharedStringItem +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      @@ -318,7 +333,7 @@

                                                                                                                                                                      ssi : - SharedStringItem + SharedStringItem
                                                                                                                                                                      @@ -333,44 +348,43 @@

                                                                                                                                                                      -
                                                                                                                                                                      - - - - - - -

                                                                                                                                                                      - - Gets the string contained in the sharedStringItem. - -

                                                                                                                                                                      -
                                                                                                                                                                      -
                                                                                                                                                                      -
                                                                                                                                                                      - - ssi - - : - SharedStringItem -
                                                                                                                                                                      -
                                                                                                                                                                      -
                                                                                                                                                                      -
                                                                                                                                                                      -
                                                                                                                                                                      - - Returns: - - string -
                                                                                                                                                                      -
                                                                                                                                                                      -
                                                                                                                                                                      +
                                                                                                                                                                      + +
                                                                                                                                                                      + + + + + +

                                                                                                                                                                      + Gets the string contained in the sharedStringItem. +

                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + + ssi + + : + SharedStringItem +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + + Returns: + + string +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      @@ -406,14 +420,14 @@

                                                                                                                                                                      ssi : - SharedStringItem + SharedStringItem

                                                                                                                                                                      Returns: - SharedStringItem + SharedStringItem

                                                                                                                                                                      @@ -421,52 +435,51 @@

                                                                                                                                                                      -
                                                                                                                                                                      - - - - - - -

                                                                                                                                                                      - - Sets the string contained in the sharedStringItem. - -

                                                                                                                                                                      -
                                                                                                                                                                      -
                                                                                                                                                                      -
                                                                                                                                                                      - - text - - : - string -
                                                                                                                                                                      -
                                                                                                                                                                      -
                                                                                                                                                                      - - ssi - - : - SharedStringItem -
                                                                                                                                                                      -
                                                                                                                                                                      -
                                                                                                                                                                      -
                                                                                                                                                                      -
                                                                                                                                                                      - - Returns: - - SharedStringItem -
                                                                                                                                                                      -
                                                                                                                                                                      -
                                                                                                                                                                      +
                                                                                                                                                                      + +
                                                                                                                                                                      + + + + + +

                                                                                                                                                                      + Sets the string contained in the sharedStringItem. +

                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + + text + + : + string +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + + ssi + + : + SharedStringItem +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      + + Returns: + + SharedStringItem +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      +
                                                                                                                                                                      @@ -481,19 +494,24 @@

                                                                                                                                                                      - - - + + + + +
                                                                                                                                                                      +
                                                                                                                                                                        +

                                                                                                                                                                        Type something to start searching.

                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-net-sharedstringtable.html b/reference/fsspreadsheet-net-sharedstringtable.html index f8c65740..6b979f34 100644 --- a/reference/fsspreadsheet-net-sharedstringtable.html +++ b/reference/fsspreadsheet-net-sharedstringtable.html @@ -1,62 +1,50 @@ - - + - - SharedStringTable (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                                        -
                                                                                                                                                                        - +
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        - +
                                                                                                                                                                        + + + + + +
                                                                                                                                                                        + + +
                                                                                                                                                                        +
                                                                                                                                                                        +

                                                                                                                                                                        SharedStringTable Module

                                                                                                                                                                        @@ -89,9 +108,7 @@

                                                                                                                                                                        - - Functions for working with SharedStringTables. - + Functions for working with SharedStringTables.

                                                                                                                                                                        @@ -124,21 +141,16 @@

                                                                                                                                                                        - - +

                                                                                                                                                                        - - Functions for working with SharedStringItems. - + Functions for working with SharedStringItems.

                                                                                                                                                                        @@ -187,7 +199,7 @@

                                                                                                                                                                        sharedStringItem : - SharedStringItem + SharedStringItem
                                                                                                                                                                        @@ -195,14 +207,14 @@

                                                                                                                                                                        sharedStringTable : - SharedStringTable + SharedStringTable

                                                                                                                                                                        Returns: - SharedStringTable + SharedStringTable

                                                                                                                                                                        @@ -210,52 +222,51 @@

                                                                                                                                                                        -
                                                                                                                                                                        - - - - - - -

                                                                                                                                                                        - - Appends the SharedStringItem to the end of the SharedStringTable. - -

                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        - - sharedStringItem - - : - SharedStringItem -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        - - sharedStringTable - - : - SharedStringTable -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        - - Returns: - - SharedStringTable -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        +
                                                                                                                                                                        + +
                                                                                                                                                                        + + + + + +

                                                                                                                                                                        + Appends the SharedStringItem to the end of the SharedStringTable. +

                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        + + sharedStringItem + + : + SharedStringItem +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        + + sharedStringTable + + : + SharedStringTable +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        + + Returns: + + SharedStringTable +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        @@ -283,7 +294,7 @@

                                                                                                                                                                        sst : - SharedStringTable + SharedStringTable
                                                                                                                                                                        @@ -298,44 +309,43 @@

                                                                                                                                                                        -
                                                                                                                                                                        - - - - - - -

                                                                                                                                                                        - - Number of sharedStringItems in the sharedStringTable. - -

                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        - - sst - - : - SharedStringTable -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        - - Returns: - - uint32 -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        +
                                                                                                                                                                        + +
                                                                                                                                                                        + + + + + +

                                                                                                                                                                        + Number of sharedStringItems in the sharedStringTable. +

                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        + + sst + + : + SharedStringTable +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        + + Returns: + + uint32 +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        @@ -370,7 +380,7 @@


                                                                                                                                                                        Returns: - SharedStringTable + SharedStringTable

                                                                                                                                                                        @@ -378,44 +388,43 @@

                                                                                                                                                                        -
                                                                                                                                                                        - - - - - - -

                                                                                                                                                                        - - Creates an empty sharedStringTable. - -

                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        - - () - - : - unit -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        - - Returns: - - SharedStringTable -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        +
                                                                                                                                                                        + +
                                                                                                                                                                        + + + + + +

                                                                                                                                                                        + Creates an empty sharedStringTable. +

                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        + + () + + : + unit +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        + + Returns: + + SharedStringTable +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        @@ -443,14 +452,14 @@

                                                                                                                                                                        sstPart : - SharedStringTablePart + SharedStringTablePart

                                                                                                                                                                        Returns: - SharedStringTable + SharedStringTable

                                                                                                                                                                        @@ -458,44 +467,43 @@

                                                                                                                                                                        -
                                                                                                                                                                        - - - - - - -

                                                                                                                                                                        - - Gets the sharedStringTable of the sharedStringTablePart. - -

                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        - - sstPart - - : - SharedStringTablePart -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        - - Returns: - - SharedStringTable -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        +
                                                                                                                                                                        + +
                                                                                                                                                                        + + + + + +

                                                                                                                                                                        + Gets the sharedStringTable of the sharedStringTablePart. +

                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        + + sstPart + + : + SharedStringTablePart +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        + + Returns: + + SharedStringTable +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        @@ -531,7 +539,7 @@

                                                                                                                                                                        sst : - SharedStringTable + SharedStringTable
                                                                                                                                                                        @@ -546,52 +554,51 @@

                                                                                                                                                                        -
                                                                                                                                                                        - - - - - - -

                                                                                                                                                                        - - Returns the index of the string, or the invers of the element count. - -

                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        - - text - - : - string -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        - - sst - - : - SharedStringTable -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        - - Returns: - - int -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        +
                                                                                                                                                                        + +
                                                                                                                                                                        + + + + + +

                                                                                                                                                                        + Returns the index of the string, or the invers of the element count. +

                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        + + text + + : + string +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        + + sst + + : + SharedStringTable +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        + + Returns: + + int +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        @@ -627,14 +634,14 @@

                                                                                                                                                                        sst : - SharedStringTable + SharedStringTable

                                                                                                                                                                        Returns: - SharedStringItem + SharedStringItem
                                                                                                                                                                        @@ -642,52 +649,51 @@

                                                                                                                                                                        -
                                                                                                                                                                        - - - - - - -

                                                                                                                                                                        - - Returns the sharedStringItem at the given index. - -

                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        - - i - - : - int -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        - - sst - - : - SharedStringTable -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        - - Returns: - - SharedStringItem -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        +
                                                                                                                                                                        + +
                                                                                                                                                                        + + + + + +

                                                                                                                                                                        + Returns the sharedStringItem at the given index. +

                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        + + i + + : + int +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        + + sst + + : + SharedStringTable +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        + + Returns: + + SharedStringItem +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        @@ -715,14 +721,14 @@

                                                                                                                                                                        sstPart : - SharedStringTablePart + SharedStringTablePart

                                                                                                                                                                        Returns: - SharedStringTablePart + SharedStringTablePart
                                                                                                                                                                        @@ -730,44 +736,43 @@

                                                                                                                                                                        -
                                                                                                                                                                        - - - - - - -

                                                                                                                                                                        - - Sets an empty sharedStringTable. - -

                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        - - sstPart - - : - SharedStringTablePart -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        - - Returns: - - SharedStringTablePart -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        +
                                                                                                                                                                        + +
                                                                                                                                                                        + + + + + +

                                                                                                                                                                        + Sets an empty sharedStringTable. +

                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        + + sstPart + + : + SharedStringTablePart +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        + + Returns: + + SharedStringTablePart +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        @@ -803,7 +808,7 @@

                                                                                                                                                                        sharedStringTable : - SharedStringTable + SharedStringTable
                                                                                                                                                                        @@ -818,52 +823,51 @@

                                                                                                                                                                        -
                                                                                                                                                                        - - - - - - -

                                                                                                                                                                        - - Inserts text into the sharedStringTable. If the item already exists, returns its index. - -

                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        - - text - - : - string -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        - - sharedStringTable - - : - SharedStringTable -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        - - Returns: - - int -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        +
                                                                                                                                                                        + +
                                                                                                                                                                        + + + + + +

                                                                                                                                                                        + Inserts text into the sharedStringTable. If the item already exists, returns its index. +

                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        + + text + + : + string +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        + + sharedStringTable + + : + SharedStringTable +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        + + Returns: + + int +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        @@ -891,7 +895,7 @@

                                                                                                                                                                        sst : - SharedStringTable + SharedStringTable
                                                                                                                                                                        @@ -899,14 +903,14 @@

                                                                                                                                                                        sstPart : - SharedStringTablePart + SharedStringTablePart

                                                                                                                                                                        Returns: - SharedStringTablePart + SharedStringTablePart
                                                                                                                                                                        @@ -914,52 +918,51 @@

                                                                                                                                                                        -
                                                                                                                                                                        - - - - - - -

                                                                                                                                                                        - - Sets the sharedStringtable of the sharedStringTablePart. - -

                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        - - sst - - : - SharedStringTable -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        - - sstPart - - : - SharedStringTablePart -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        - - Returns: - - SharedStringTablePart -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        +
                                                                                                                                                                        + +
                                                                                                                                                                        + + + + + +

                                                                                                                                                                        + Sets the sharedStringtable of the sharedStringTablePart. +

                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        + + sst + + : + SharedStringTable +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        + + sstPart + + : + SharedStringTablePart +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        + + Returns: + + SharedStringTablePart +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        @@ -987,14 +990,14 @@

                                                                                                                                                                        sst : - SharedStringTable + SharedStringTable

                                                                                                                                                                        Returns: - string[] + string array
                                                                                                                                                                        @@ -1002,30 +1005,13 @@

                                                                                                                                                                        -
                                                                                                                                                                        - - - - - - -

                                                                                                                                                                        - -

                                                                                                                                                                        -
                                                                                                                                                                        sst : - SharedStringTable + SharedStringTable
                                                                                                                                                                        @@ -1034,7 +1020,7 @@

                                                                                                                                                                        Returns: - string[] + string array
                                                                                                                                                                        @@ -1065,14 +1051,14 @@

                                                                                                                                                                        sst : - SharedStringTable + SharedStringTable

                                                                                                                                                                        Returns: - seq<SharedStringItem> + SharedStringItem seq
                                                                                                                                                                        @@ -1080,44 +1066,43 @@

                                                                                                                                                                        -
                                                                                                                                                                        - - - - - - -

                                                                                                                                                                        - - Returns the sharedStringItems contained in the sharedStringTable. - -

                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        - - sst - - : - SharedStringTable -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        - - Returns: - - seq<SharedStringItem> -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        +
                                                                                                                                                                        + +
                                                                                                                                                                        + + + + + +

                                                                                                                                                                        + Returns the sharedStringItems contained in the sharedStringTable. +

                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        + + sst + + : + SharedStringTable +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        + + Returns: + + SharedStringItem seq +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        @@ -1145,14 +1130,14 @@

                                                                                                                                                                        spreadsheetDocument : - SpreadsheetDocument + SpreadsheetDocument

                                                                                                                                                                        Returns: - SharedStringTable option + SharedStringTable option
                                                                                                                                                                        @@ -1160,44 +1145,43 @@

                                                                                                                                                                        -
                                                                                                                                                                        - - - - - - -

                                                                                                                                                                        - - Gets the sharedStringTable of the spreadsheet if it exists, else returns None. - -

                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        - - spreadsheetDocument - - : - SpreadsheetDocument -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        - - Returns: - - SharedStringTable option -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        +
                                                                                                                                                                        + +
                                                                                                                                                                        + + + + + +

                                                                                                                                                                        + Gets the sharedStringTable of the spreadsheet if it exists, else returns None. +

                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        + + spreadsheetDocument + + : + SpreadsheetDocument +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        + + Returns: + + SharedStringTable option +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        @@ -1233,7 +1217,7 @@

                                                                                                                                                                        sst : - SharedStringTable + SharedStringTable
                                                                                                                                                                        @@ -1248,52 +1232,51 @@

                                                                                                                                                                        -
                                                                                                                                                                        - - - - - - -

                                                                                                                                                                        - - If the string is contained in the sharedStringTable, contains the index of its position. - -

                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        - - s - - : - string -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        - - sst - - : - SharedStringTable -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        - - Returns: - - int option -
                                                                                                                                                                        -
                                                                                                                                                                        -
                                                                                                                                                                        +
                                                                                                                                                                        + +
                                                                                                                                                                        + + + + + +

                                                                                                                                                                        + If the string is contained in the sharedStringTable, contains the index of its position. +

                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        + + s + + : + string +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        + + sst + + : + SharedStringTable +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        + + Returns: + + int option +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        +
                                                                                                                                                                        @@ -1308,19 +1291,24 @@

                                                                                                                                                                        - - - + + + + +
                                                                                                                                                                        +
                                                                                                                                                                          +

                                                                                                                                                                          Type something to start searching.

                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-net-sheet-sheets.html b/reference/fsspreadsheet-net-sheet-sheets.html index f5bc8462..765a0885 100644 --- a/reference/fsspreadsheet-net-sheet-sheets.html +++ b/reference/fsspreadsheet-net-sheet-sheets.html @@ -1,62 +1,50 @@ - - + - - Sheets (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                                          -
                                                                                                                                                                          - +
                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                          - +
                                                                                                                                                                          + + + + + +
                                                                                                                                                                          + + +
                                                                                                                                                                          +
                                                                                                                                                                          +

                                                                                                                                                                          Sheets Module

                                                                                                                                                                          @@ -95,9 +114,7 @@

                                                                                                                                                                          - - Functions for working with Sheets. - + Functions for working with Sheets.

                                                                                                                                                                          @@ -142,7 +159,7 @@

                                                                                                                                                                          newSheet : - Sheet + Sheet
                                                                                                                                                                          @@ -150,14 +167,14 @@

                                                                                                                                                                          sheets : - Sheets + Sheets

                                                                                                                                                                          Returns: - Sheet + Sheet

                                                                                                                                                                          @@ -165,52 +182,51 @@

                                                                                                                                                                          -
                                                                                                                                                                          - - - - - - -

                                                                                                                                                                          - - Adds a single Sheet to the Sheets. - -

                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                          - - newSheet - - : - Sheet -
                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                          - - sheets - - : - Sheets -
                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                          - - Returns: - - Sheet -
                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                          +
                                                                                                                                                                          + +
                                                                                                                                                                          + + + + + +

                                                                                                                                                                          + Adds a single Sheet to the Sheets. +

                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          + + newSheet + + : + Sheet +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          + + sheets + + : + Sheets +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          + + Returns: + + Sheet +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          @@ -238,7 +254,7 @@

                                                                                                                                                                          newSheets : - seq<Sheet> + Sheet seq
                                                                                                                                                                          @@ -246,14 +262,14 @@

                                                                                                                                                                          sheets : - Sheets + Sheets

                                                                                                                                                                          Returns: - Sheets + Sheets

                                                                                                                                                                          @@ -261,52 +277,51 @@

                                                                                                                                                                          -
                                                                                                                                                                          - - - - - - -

                                                                                                                                                                          - - Adds a Sheet collection to the Sheets. - -

                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                          - - newSheets - - : - seq<Sheet> -
                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                          - - sheets - - : - Sheets -
                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                          - - Returns: - - Sheets -
                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                          +
                                                                                                                                                                          + +
                                                                                                                                                                          + + + + + +

                                                                                                                                                                          + Adds a Sheet collection to the Sheets. +

                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          + + newSheets + + : + Sheet seq +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          + + sheets + + : + Sheets +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          + + Returns: + + Sheets +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          @@ -341,7 +356,7 @@


                                                                                                                                                                          Returns: - Sheets + Sheets

                                                                                                                                                                          @@ -349,44 +364,43 @@

                                                                                                                                                                          -
                                                                                                                                                                          - - - - - - -

                                                                                                                                                                          - - Creates empty sheets. - -

                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                          - - () - - : - unit -
                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                          - - Returns: - - Sheets -
                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                          +
                                                                                                                                                                          + +
                                                                                                                                                                          + + + + + +

                                                                                                                                                                          + Creates empty sheets. +

                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          + + () + + : + unit +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          + + Returns: + + Sheets +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          @@ -414,14 +428,14 @@

                                                                                                                                                                          workbook : - Workbook + Workbook

                                                                                                                                                                          Returns: - Sheets + Sheets
                                                                                                                                                                          @@ -429,44 +443,43 @@

                                                                                                                                                                          -
                                                                                                                                                                          - - - - - - -

                                                                                                                                                                          - - Gets the sheets of the workbook. - -

                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                          - - workbook - - : - Workbook -
                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                          - - Returns: - - Sheets -
                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                          +
                                                                                                                                                                          + +
                                                                                                                                                                          + + + + + +

                                                                                                                                                                          + Gets the sheets of the workbook. +

                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          + + workbook + + : + Workbook +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          + + Returns: + + Sheets +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          @@ -494,14 +507,14 @@

                                                                                                                                                                          sheets : - Sheets + Sheets

                                                                                                                                                                          Returns: - Sheet + Sheet
                                                                                                                                                                          @@ -509,44 +522,43 @@

                                                                                                                                                                          -
                                                                                                                                                                          - - - - - - -

                                                                                                                                                                          - - Returns the first child sheet of the sheets. - -

                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                          - - sheets - - : - Sheets -
                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                          - - Returns: - - Sheet -
                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                          +
                                                                                                                                                                          + +
                                                                                                                                                                          + + + + + +

                                                                                                                                                                          + Returns the first child sheet of the sheets. +

                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          + + sheets + + : + Sheets +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          + + Returns: + + Sheet +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          @@ -574,14 +586,14 @@

                                                                                                                                                                          workbook : - Workbook + Workbook

                                                                                                                                                                          Returns: - Sheets + Sheets
                                                                                                                                                                          @@ -589,44 +601,43 @@

                                                                                                                                                                          -
                                                                                                                                                                          - - - - - - -

                                                                                                                                                                          - - Returns the existing or a newly created sheets associated with the worksheet. - -

                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                          - - workbook - - : - Workbook -
                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                          - - Returns: - - Sheets -
                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                          +
                                                                                                                                                                          + +
                                                                                                                                                                          + + + + + +

                                                                                                                                                                          + Returns the existing or a newly created sheets associated with the worksheet. +

                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          + + workbook + + : + Workbook +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          + + Returns: + + Sheets +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          @@ -654,14 +665,14 @@

                                                                                                                                                                          sheets : - Sheets + Sheets

                                                                                                                                                                          Returns: - IEnumerable<Sheet> + IEnumerable<Sheet>
                                                                                                                                                                          @@ -669,44 +680,43 @@

                                                                                                                                                                          -
                                                                                                                                                                          - - - - - - -

                                                                                                                                                                          - - Returns all sheets of the sheets. - -

                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                          - - sheets - - : - Sheets -
                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                          - - Returns: - - IEnumerable<Sheet> -
                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                          +
                                                                                                                                                                          + +
                                                                                                                                                                          + + + + + +

                                                                                                                                                                          + Returns all sheets of the sheets. +

                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          + + sheets + + : + Sheets +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          + + Returns: + + IEnumerable<Sheet> +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          @@ -734,14 +744,14 @@

                                                                                                                                                                          workbook : - Workbook + Workbook

                                                                                                                                                                          Returns: - Workbook + Workbook
                                                                                                                                                                          @@ -749,44 +759,43 @@

                                                                                                                                                                          -
                                                                                                                                                                          - - - - - - -

                                                                                                                                                                          - - Add an empty sheets element to the workbook. - -

                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                          - - workbook - - : - Workbook -
                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                          - - Returns: - - Workbook -
                                                                                                                                                                          -
                                                                                                                                                                          -
                                                                                                                                                                          +
                                                                                                                                                                          + +
                                                                                                                                                                          + + + + + +

                                                                                                                                                                          + Add an empty sheets element to the workbook. +

                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          + + workbook + + : + Workbook +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          + + Returns: + + Workbook +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          +
                                                                                                                                                                          @@ -822,14 +831,14 @@

                                                                                                                                                                          sheets : - Sheets + Sheets

                                                                                                                                                                          Returns: - Sheet option + Sheet option
                                                                                                                                                                          @@ -837,23 +846,6 @@

                                                                                                                                                                          -
                                                                                                                                                                          - - - - - - -

                                                                                                                                                                          - -

                                                                                                                                                                          -
                                                                                                                                                                          @@ -868,7 +860,7 @@

                                                                                                                                                                          sheets : - Sheets + Sheets

                                                                                                                                                                          @@ -877,7 +869,7 @@

                                                                                                                                                                          Returns: - Sheet option + Sheet option
                                                                                                                                                                          @@ -895,19 +887,24 @@

                                                                                                                                                                          - - - + + + + +
                                                                                                                                                                          +
                                                                                                                                                                            +

                                                                                                                                                                            Type something to start searching.

                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-net-sheet.html b/reference/fsspreadsheet-net-sheet.html index 304f3a1d..561a7019 100644 --- a/reference/fsspreadsheet-net-sheet.html +++ b/reference/fsspreadsheet-net-sheet.html @@ -1,62 +1,50 @@ - - + - - Sheet (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                                            -
                                                                                                                                                                            - +
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            - +
                                                                                                                                                                            + + + + + +
                                                                                                                                                                            + + +
                                                                                                                                                                            +
                                                                                                                                                                            +

                                                                                                                                                                            Sheet Module

                                                                                                                                                                            @@ -89,9 +108,7 @@

                                                                                                                                                                            - - 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) - + 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)

                                                                                                                                                                            @@ -124,21 +141,16 @@

                                                                                                                                                                            - - +

                                                                                                                                                                            - - Functions for working with Sheets. - + Functions for working with Sheets.

                                                                                                                                                                            @@ -187,7 +199,7 @@

                                                                                                                                                                            spreadsheetDocument : - SpreadsheetDocument + SpreadsheetDocument
                                                                                                                                                                            @@ -195,14 +207,14 @@

                                                                                                                                                                            sheet : - Sheet + Sheet

                                                                                                                                                                            Returns: - SpreadsheetDocument + SpreadsheetDocument

                                                                                                                                                                            @@ -210,52 +222,51 @@

                                                                                                                                                                            -
                                                                                                                                                                            - - - - - - -

                                                                                                                                                                            - - Adds the given sheet to the spreadsheetDocument. - -

                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            - - spreadsheetDocument - - : - SpreadsheetDocument -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            - - sheet - - : - Sheet -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            - - Returns: - - SpreadsheetDocument -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            +
                                                                                                                                                                            + +
                                                                                                                                                                            + + + + + +

                                                                                                                                                                            + Adds the given sheet to the spreadsheetDocument. +

                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + + spreadsheetDocument + + : + SpreadsheetDocument +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + + sheet + + : + Sheet +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + + Returns: + + SpreadsheetDocument +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            @@ -283,7 +294,7 @@

                                                                                                                                                                            spreadsheetDocument : - SpreadsheetDocument + SpreadsheetDocument
                                                                                                                                                                            @@ -298,44 +309,43 @@

                                                                                                                                                                            -
                                                                                                                                                                            - - - - - - -

                                                                                                                                                                            - - Counts the number of sheets in the spreadsheetDocument. - -

                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            - - spreadsheetDocument - - : - SpreadsheetDocument -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            - - Returns: - - int -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            +
                                                                                                                                                                            + +
                                                                                                                                                                            + + + + + +

                                                                                                                                                                            + Counts the number of sheets in the spreadsheetDocument. +

                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + + spreadsheetDocument + + : + SpreadsheetDocument +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + + Returns: + + int +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            @@ -386,7 +396,7 @@


                                                                                                                                                                            Returns: - Sheet + Sheet

                                                                                                                                                                            @@ -394,60 +404,59 @@

                                                                                                                                                                            -
                                                                                                                                                                            - - - - - - -

                                                                                                                                                                            - - Create a sheet from the id, the name and the sheetID. - -

                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            - - id - - : - string -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            - - name - - : - string -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            - - sheetID - - : - uint32 -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            - - Returns: - - Sheet -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            +
                                                                                                                                                                            + +
                                                                                                                                                                            + + + + + +

                                                                                                                                                                            + Create a sheet from the id, the name and the sheetID. +

                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + + id + + : + string +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + + name + + : + string +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + + sheetID + + : + uint32 +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + + Returns: + + Sheet +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            @@ -482,7 +491,7 @@


                                                                                                                                                                            Returns: - Sheet + Sheet

                                                                                                                                                                            @@ -490,44 +499,43 @@

                                                                                                                                                                            -
                                                                                                                                                                            - - - - - - -

                                                                                                                                                                            - - Creates an empty Sheet. - -

                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            - - () - - : - unit -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            - - Returns: - - Sheet -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            +
                                                                                                                                                                            + +
                                                                                                                                                                            + + + + + +

                                                                                                                                                                            + Creates an empty Sheet. +

                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + + () + + : + unit +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + + Returns: + + Sheet +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            @@ -555,7 +563,7 @@

                                                                                                                                                                            sheet : - Sheet + Sheet
                                                                                                                                                                            @@ -570,44 +578,43 @@

                                                                                                                                                                            -
                                                                                                                                                                            - - - - - - -

                                                                                                                                                                            - - Gets the ID of the sheet (this ID associates the sheet with the worksheet). - -

                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            - - sheet - - : - Sheet -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            - - Returns: - - string -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            +
                                                                                                                                                                            + +
                                                                                                                                                                            + + + + + +

                                                                                                                                                                            + Gets the ID of the sheet (this ID associates the sheet with the worksheet). +

                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + + sheet + + : + Sheet +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + + Returns: + + string +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            @@ -635,7 +642,7 @@

                                                                                                                                                                            sheet : - Sheet + Sheet
                                                                                                                                                                            @@ -650,44 +657,43 @@

                                                                                                                                                                            -
                                                                                                                                                                            - - - - - - -

                                                                                                                                                                            - - Gets the name of the sheet (this is the name displayed in MS Excel). - -

                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            - - sheet - - : - Sheet -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            - - Returns: - - string -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            +
                                                                                                                                                                            + +
                                                                                                                                                                            + + + + + +

                                                                                                                                                                            + Gets the name of the sheet (this is the name displayed in MS Excel). +

                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + + sheet + + : + Sheet +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + + Returns: + + string +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            @@ -715,7 +721,7 @@

                                                                                                                                                                            sheet : - Sheet + Sheet
                                                                                                                                                                            @@ -730,44 +736,43 @@

                                                                                                                                                                            -
                                                                                                                                                                            - - - - - - -

                                                                                                                                                                            - - Gets the SheetID of the sheet (this ID determines the position of the sheet tab in MS Excel). - -

                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            - - sheet - - : - Sheet -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            - - Returns: - - uint32 -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            +
                                                                                                                                                                            + +
                                                                                                                                                                            + + + + + +

                                                                                                                                                                            + Gets the SheetID of the sheet (this ID determines the position of the sheet tab in MS Excel). +

                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + + sheet + + : + Sheet +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + + Returns: + + uint32 +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            @@ -795,7 +800,7 @@

                                                                                                                                                                            spreadsheetDocument : - SpreadsheetDocument + SpreadsheetDocument
                                                                                                                                                                            @@ -803,14 +808,14 @@

                                                                                                                                                                            sheet : - Sheet + Sheet

                                                                                                                                                                            Returns: - SpreadsheetDocument + SpreadsheetDocument
                                                                                                                                                                            @@ -818,52 +823,51 @@

                                                                                                                                                                            -
                                                                                                                                                                            - - - - - - -

                                                                                                                                                                            - - Removes the given sheet from the sheets. - -

                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            - - spreadsheetDocument - - : - SpreadsheetDocument -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            - - sheet - - : - Sheet -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            - - Returns: - - SpreadsheetDocument -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            +
                                                                                                                                                                            + +
                                                                                                                                                                            + + + + + +

                                                                                                                                                                            + Removes the given sheet from the sheets. +

                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + + spreadsheetDocument + + : + SpreadsheetDocument +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + + sheet + + : + Sheet +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + + Returns: + + SpreadsheetDocument +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            @@ -899,14 +903,14 @@

                                                                                                                                                                            sheet : - Sheet + Sheet

                                                                                                                                                                            Returns: - Sheet + Sheet
                                                                                                                                                                            @@ -914,52 +918,51 @@

                                                                                                                                                                            -
                                                                                                                                                                            - - - - - - -

                                                                                                                                                                            - - Sets the ID of the sheet (this ID associates the sheet with the worksheet). - -

                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            - - id - - : - string -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            - - sheet - - : - Sheet -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            - - Returns: - - Sheet -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            +
                                                                                                                                                                            + +
                                                                                                                                                                            + + + + + +

                                                                                                                                                                            + Sets the ID of the sheet (this ID associates the sheet with the worksheet). +

                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + + id + + : + string +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + + sheet + + : + Sheet +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + + Returns: + + Sheet +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            @@ -995,14 +998,14 @@

                                                                                                                                                                            sheet : - Sheet + Sheet

                                                                                                                                                                            Returns: - Sheet + Sheet
                                                                                                                                                                            @@ -1010,52 +1013,51 @@

                                                                                                                                                                            -
                                                                                                                                                                            - - - - - - -

                                                                                                                                                                            - - Sets the name of the sheet (this is the name displayed in MS Excel). - -

                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            - - name - - : - string -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            - - sheet - - : - Sheet -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            - - Returns: - - Sheet -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            +
                                                                                                                                                                            + +
                                                                                                                                                                            + + + + + +

                                                                                                                                                                            + Sets the name of the sheet (this is the name displayed in MS Excel). +

                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + + name + + : + string +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + + sheet + + : + Sheet +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + + Returns: + + Sheet +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            @@ -1091,14 +1093,14 @@

                                                                                                                                                                            sheet : - Sheet + Sheet

                                                                                                                                                                            Returns: - Sheet + Sheet
                                                                                                                                                                            @@ -1106,52 +1108,51 @@

                                                                                                                                                                            -
                                                                                                                                                                            - - - - - - -

                                                                                                                                                                            - - Sets the SheetID of the sheet (this ID determines the position of the sheet tab in MS Excel). - -

                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            - - id - - : - uint32 -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            - - sheet - - : - Sheet -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            - - Returns: - - Sheet -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            +
                                                                                                                                                                            + +
                                                                                                                                                                            + + + + + +

                                                                                                                                                                            + Sets the SheetID of the sheet (this ID determines the position of the sheet tab in MS Excel). +

                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + + id + + : + uint32 +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + + sheet + + : + Sheet +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + + Returns: + + Sheet +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            @@ -1187,14 +1188,14 @@

                                                                                                                                                                            spreadsheetDocument : - SpreadsheetDocument + SpreadsheetDocument

                                                                                                                                                                            Returns: - Sheet option + Sheet option
                                                                                                                                                                            @@ -1202,52 +1203,51 @@

                                                                                                                                                                            -
                                                                                                                                                                            - - - - - - -

                                                                                                                                                                            - - Returns the sheet for which the predicate returns true (Id Name SheetID -> bool) - -

                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            - - predicate - - : - string -> string -> uint32 -> bool -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            - - spreadsheetDocument - - : - SpreadsheetDocument -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            - - Returns: - - Sheet option -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            +
                                                                                                                                                                            + +
                                                                                                                                                                            + + + + + +

                                                                                                                                                                            + Returns the sheet for which the predicate returns true (Id Name SheetID -> bool) +

                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + + predicate + + : + string -> string -> uint32 -> bool +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + + spreadsheetDocument + + : + SpreadsheetDocument +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + + Returns: + + Sheet option +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            @@ -1283,14 +1283,14 @@

                                                                                                                                                                            spreadsheetDocument : - SpreadsheetDocument + SpreadsheetDocument

                                                                                                                                                                            Returns: - Sheet option + Sheet option
                                                                                                                                                                            @@ -1298,52 +1298,51 @@

                                                                                                                                                                            -
                                                                                                                                                                            - - - - - - -

                                                                                                                                                                            - - Returns the with the given ID in the SpreadsheetDocument if it exists. Else returns None. - -

                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            - - id - - : - string -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            - - spreadsheetDocument - - : - SpreadsheetDocument -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            - - Returns: - - Sheet option -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            +
                                                                                                                                                                            + +
                                                                                                                                                                            + + + + + +

                                                                                                                                                                            + Returns the with the given ID in the SpreadsheetDocument if it exists. Else returns None. +

                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + + id + + : + string +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + + spreadsheetDocument + + : + SpreadsheetDocument +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + + Returns: + + Sheet option +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            @@ -1379,14 +1378,14 @@

                                                                                                                                                                            spreadsheetDocument : - SpreadsheetDocument + SpreadsheetDocument

                                                                                                                                                                            Returns: - Sheet option + Sheet option
                                                                                                                                                                            @@ -1394,55 +1393,56 @@

                                                                                                                                                                            -
                                                                                                                                                                            - - - - - - -

                                                                                                                                                                            - +

                                                                                                                                                                            + +
                                                                                                                                                                            + + + + + +

                                                                                                                                                                            + Returns the item at the given index in the SpreadsheetDocument if it exists. Else returns None. +

                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +

                                                                                                                                                                            + SheetIndices are 1-based.

                                                                                                                                                                            -
                                                                                                                                                                            -

                                                                                                                                                                            - SheetIndices are 1-based. -

                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            - - index - - : - uint -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            - - spreadsheetDocument - - : - SpreadsheetDocument -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            - - Returns: - - Sheet option -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + + index + + : + uint +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + + spreadsheetDocument + + : + SpreadsheetDocument +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + + Returns: + + Sheet option +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + @@ -1478,14 +1478,14 @@

                                                                                                                                                                            spreadsheetDocument : - SpreadsheetDocument + SpreadsheetDocument

                                                                                                                                                                            Returns: - Sheet option + Sheet option
                                                                                                                                                                            @@ -1493,52 +1493,51 @@

                                                                                                                                                                            -
                                                                                                                                                                            - - - - - - -

                                                                                                                                                                            - - Returns the item with the given name in the spreadsheetDocument if it exists. Else returns None. - -

                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            - - name - - : - string -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            - - spreadsheetDocument - - : - SpreadsheetDocument -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            - - Returns: - - Sheet option -
                                                                                                                                                                            -
                                                                                                                                                                            -
                                                                                                                                                                            +
                                                                                                                                                                            + +
                                                                                                                                                                            + + + + + +

                                                                                                                                                                            + Returns the item with the given name in the spreadsheetDocument if it exists. Else returns None. +

                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + + name + + : + string +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + + spreadsheetDocument + + : + SpreadsheetDocument +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            + + Returns: + + Sheet option +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            +
                                                                                                                                                                            @@ -1553,19 +1552,24 @@

                                                                                                                                                                            - - - + + + + +
                                                                                                                                                                            +
                                                                                                                                                                              +

                                                                                                                                                                              Type something to start searching.

                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-net-sheetdata.html b/reference/fsspreadsheet-net-sheetdata.html index 4095c90a..7561492d 100644 --- a/reference/fsspreadsheet-net-sheetdata.html +++ b/reference/fsspreadsheet-net-sheetdata.html @@ -1,62 +1,50 @@ - - + - - SheetData (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                                              -
                                                                                                                                                                              - +
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - +
                                                                                                                                                                              + + + + + +
                                                                                                                                                                              + + +
                                                                                                                                                                              +
                                                                                                                                                                              +

                                                                                                                                                                              SheetData Module

                                                                                                                                                                              @@ -89,9 +108,7 @@

                                                                                                                                                                              - - Functions for working with SheetData. (Unmanaged: Row indices and cell references do not automatically get updated) - + Functions for working with SheetData. (Unmanaged: Row indices and cell references do not automatically get updated)

                                                                                                                                                                              @@ -136,7 +153,7 @@

                                                                                                                                                                              row : - Row + Row
                                                                                                                                                                              @@ -144,14 +161,14 @@

                                                                                                                                                                              sheetData : - SheetData + SheetData

                                                                                                                                                                              Returns: - SheetData + SheetData

                                                                                                                                                                              @@ -159,52 +176,51 @@

                                                                                                                                                                              -
                                                                                                                                                                              - - - - - - -

                                                                                                                                                                              - - Append a row to the end of the SheetData. - -

                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - row - - : - Row -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - sheetData - - : - SheetData -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - Returns: - - SheetData -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              +
                                                                                                                                                                              + +
                                                                                                                                                                              + + + + + +

                                                                                                                                                                              + Append a row to the end of the SheetData. +

                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + row + + : + Row +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + sheetData + + : + SheetData +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + Returns: + + SheetData +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              @@ -232,7 +248,7 @@

                                                                                                                                                                              sst : - Option<SharedStringTable> + Option<SharedStringTable>
                                                                                                                                                                              @@ -240,7 +256,7 @@

                                                                                                                                                                              vals : - seq<'T> + 'T seq
                                                                                                                                                                              @@ -248,14 +264,14 @@

                                                                                                                                                                              sheet : - SheetData + SheetData

                                                                                                                                                                              Returns: - SheetData + SheetData

                                                                                                                                                                              @@ -263,60 +279,59 @@

                                                                                                                                                                              -
                                                                                                                                                                              - - - - - - -

                                                                                                                                                                              - - Append the values as a row to the end of the sheet. - -

                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - sst - - : - Option<SharedStringTable> -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - vals - - : - seq<'T> -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - sheet - - : - SheetData -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - Returns: - - SheetData -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              +
                                                                                                                                                                              + +
                                                                                                                                                                              + + + + + +

                                                                                                                                                                              + Append the values as a row to the end of the sheet. +

                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + sst + + : + Option<SharedStringTable> +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + vals + + : + 'T seq +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + sheet + + : + SheetData +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + Returns: + + SheetData +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              @@ -344,7 +359,7 @@

                                                                                                                                                                              sst : - Option<SharedStringTable> + Option<SharedStringTable>
                                                                                                                                                                              @@ -368,14 +383,14 @@

                                                                                                                                                                              sheet : - SheetData + SheetData

                                                                                                                                                                              Returns: - SheetData + SheetData

                                                                                                                                                                              @@ -383,68 +398,67 @@

                                                                                                                                                                              -
                                                                                                                                                                              - - - - - - -

                                                                                                                                                                              - - Append the value as a cell to the end of the row. - -

                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - sst - - : - Option<SharedStringTable> -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - rowIndex - - : - uint32 -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - value - - : - 'T -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - sheet - - : - SheetData -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - Returns: - - SheetData -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              +
                                                                                                                                                                              + +
                                                                                                                                                                              + + + + + +

                                                                                                                                                                              + Append the value as a cell to the end of the row. +

                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + sst + + : + Option<SharedStringTable> +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + rowIndex + + : + uint32 +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + value + + : + 'T +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + sheet + + : + SheetData +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + Returns: + + SheetData +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              @@ -480,7 +494,7 @@

                                                                                                                                                                              sheetData : - SheetData + SheetData
                                                                                                                                                                              @@ -495,52 +509,51 @@

                                                                                                                                                                              -
                                                                                                                                                                              - - - - - - -

                                                                                                                                                                              - - Returns true if the SheetData contains a row with the given rowIndex. - -

                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - index - - : - uint32 -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - sheetData - - : - SheetData -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - Returns: - - bool -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              +
                                                                                                                                                                              + +
                                                                                                                                                                              + + + + + +

                                                                                                                                                                              + Returns true if the SheetData contains a row with the given rowIndex. +

                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + index + + : + uint32 +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + sheetData + + : + SheetData +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + Returns: + + bool +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              @@ -568,7 +581,7 @@

                                                                                                                                                                              sheetData : - SheetData + SheetData
                                                                                                                                                                              @@ -583,44 +596,43 @@

                                                                                                                                                                              -
                                                                                                                                                                              - - - - - - -

                                                                                                                                                                              - - Returns the number of rows contained in the SheetData. - -

                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - sheetData - - : - SheetData -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - Returns: - - int -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              +
                                                                                                                                                                              + +
                                                                                                                                                                              + + + + + +

                                                                                                                                                                              + Returns the number of rows contained in the SheetData. +

                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + sheetData + + : + SheetData +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + Returns: + + int +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              @@ -656,14 +668,14 @@

                                                                                                                                                                              sheet : - SheetData + SheetData

                                                                                                                                                                              Returns: - SheetData + SheetData
                                                                                                                                                                              @@ -671,52 +683,51 @@

                                                                                                                                                                              -
                                                                                                                                                                              - - - - - - -

                                                                                                                                                                              - - Removes row from sheet and move the following rows up. - -

                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - rowIndex - - : - uint32 -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - sheet - - : - SheetData -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - Returns: - - SheetData -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              +
                                                                                                                                                                              + +
                                                                                                                                                                              + + + + + +

                                                                                                                                                                              + Removes row from sheet and move the following rows up. +

                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + rowIndex + + : + uint32 +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + sheet + + : + SheetData +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + Returns: + + SheetData +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              @@ -751,7 +762,7 @@


                                                                                                                                                                              Returns: - SheetData + SheetData
                                                                                                                                                                              @@ -759,44 +770,43 @@

                                                                                                                                                                              -
                                                                                                                                                                              - - - - - - -

                                                                                                                                                                              - - Creates an empty SheetData. - -

                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - () - - : - unit -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - Returns: - - SheetData -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              +
                                                                                                                                                                              + +
                                                                                                                                                                              + + + + + +

                                                                                                                                                                              + Creates an empty SheetData. +

                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + () + + : + unit +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + Returns: + + SheetData +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              @@ -840,14 +850,14 @@

                                                                                                                                                                              sheetData : - SheetData + SheetData

                                                                                                                                                                              Returns: - Cell + Cell
                                                                                                                                                                              @@ -855,60 +865,59 @@

                                                                                                                                                                              -
                                                                                                                                                                              - - - - - - -

                                                                                                                                                                              - - Returns a cell at the given row- and columnIndex in the SheetData. - -

                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - rowIndex - - : - uint32 -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - columnIndex - - : - uint32 -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - sheetData - - : - SheetData -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - Returns: - - Cell -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              +
                                                                                                                                                                              + +
                                                                                                                                                                              + + + + + +

                                                                                                                                                                              + Returns a cell at the given row- and columnIndex in the SheetData. +

                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + rowIndex + + : + uint32 +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + columnIndex + + : + uint32 +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + sheetData + + : + SheetData +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + Returns: + + Cell +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              @@ -960,7 +969,7 @@

                                                                                                                                                                              sheetData : - SheetData + SheetData
                                                                                                                                                                              @@ -975,68 +984,67 @@

                                                                                                                                                                              -
                                                                                                                                                                              - - - - - - -

                                                                                                                                                                              - - Gets the string value of the cell at the given 1-based column- and rowIndex using a sharedStringTable. - -

                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - sst - - : - Option<SST> -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - rowIndex - - : - uint32 -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - columnIndex - - : - uint32 -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - sheetData - - : - SheetData -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - Returns: - - string -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              +
                                                                                                                                                                              + +
                                                                                                                                                                              + + + + + +

                                                                                                                                                                              + Gets the string value of the cell at the given 1-based column- and rowIndex using a sharedStringTable. +

                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + sst + + : + Option<SST> +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + rowIndex + + : + uint32 +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + columnIndex + + : + uint32 +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + sheetData + + : + SheetData +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + Returns: + + string +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              @@ -1064,7 +1072,7 @@

                                                                                                                                                                              sheetData : - SheetData + SheetData
                                                                                                                                                                              @@ -1079,44 +1087,43 @@

                                                                                                                                                                              -
                                                                                                                                                                              - - - - - - -

                                                                                                                                                                              - - Returns the index of the last row in the sheet. - -

                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - sheetData - - : - SheetData -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - Returns: - - uint32 -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              +
                                                                                                                                                                              + +
                                                                                                                                                                              + + + + + +

                                                                                                                                                                              + Returns the index of the last row in the sheet. +

                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + sheetData + + : + SheetData +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + Returns: + + uint32 +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              @@ -1152,14 +1159,14 @@

                                                                                                                                                                              sheetData : - SheetData + SheetData

                                                                                                                                                                              Returns: - Row + Row
                                                                                                                                                                              @@ -1167,52 +1174,51 @@

                                                                                                                                                                              -
                                                                                                                                                                              - - - - - - -

                                                                                                                                                                              - - Returns the row with the given rowIndex. - -

                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - index - - : - uint32 -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - sheetData - - : - SheetData -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - Returns: - - Row -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              +
                                                                                                                                                                              + +
                                                                                                                                                                              + + + + + +

                                                                                                                                                                              + Returns the row with the given rowIndex. +

                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + index + + : + uint32 +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + sheetData + + : + SheetData +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + Returns: + + Row +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              @@ -1256,14 +1262,14 @@

                                                                                                                                                                              sheet : - SheetData + SheetData

                                                                                                                                                                              Returns: - seq<string> + string seq
                                                                                                                                                                              @@ -1271,60 +1277,59 @@

                                                                                                                                                                              -
                                                                                                                                                                              - - - - - - -

                                                                                                                                                                              - - Gets the string values of the row at the given 1-based rowIndex. - -

                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - sst - - : - Option<SST> -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - rowIndex - - : - uint32 -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - sheet - - : - SheetData -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - Returns: - - seq<string> -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              +
                                                                                                                                                                              + +
                                                                                                                                                                              + + + + + +

                                                                                                                                                                              + Gets the string values of the row at the given 1-based rowIndex. +

                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + sst + + : + Option<SST> +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + rowIndex + + : + uint32 +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + sheet + + : + SheetData +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + Returns: + + string seq +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              @@ -1352,14 +1357,14 @@

                                                                                                                                                                              sheetData : - SheetData + SheetData

                                                                                                                                                                              Returns: - seq<Row> + Row seq
                                                                                                                                                                              @@ -1367,44 +1372,43 @@

                                                                                                                                                                              -
                                                                                                                                                                              - - - - - - -

                                                                                                                                                                              - - Returns a sequence of rows contained in the SheetData. - -

                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - sheetData - - : - SheetData -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - Returns: - - seq<Row> -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              +
                                                                                                                                                                              + +
                                                                                                                                                                              + + + + + +

                                                                                                                                                                              + Returns a sequence of rows contained in the SheetData. +

                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + sheetData + + : + SheetData +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + Returns: + + Row seq +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              @@ -1440,14 +1444,14 @@

                                                                                                                                                                              sheetData : - SheetData + SheetData

                                                                                                                                                                              Returns: - SheetData + SheetData
                                                                                                                                                                              @@ -1455,52 +1459,51 @@

                                                                                                                                                                              -
                                                                                                                                                                              - - - - - - -

                                                                                                                                                                              - - Includes a value from sharedStringTable in the cells of the rows of the sheetData - -

                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - sharedStringTable - - : - SST -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - sheetData - - : - SheetData -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - Returns: - - SheetData -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              +
                                                                                                                                                                              + +
                                                                                                                                                                              + + + + + +

                                                                                                                                                                              + Includes a value from sharedStringTable in the cells of the rows of the sheetData +

                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + sharedStringTable + + : + SST +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + sheetData + + : + SheetData +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + Returns: + + SheetData +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              @@ -1528,7 +1531,7 @@

                                                                                                                                                                              row : - Row + Row
                                                                                                                                                                              @@ -1536,7 +1539,7 @@

                                                                                                                                                                              refRow : - Row + Row
                                                                                                                                                                              @@ -1544,14 +1547,14 @@

                                                                                                                                                                              sheetData : - SheetData + SheetData

                                                                                                                                                                              Returns: - SheetData + SheetData
                                                                                                                                                                              @@ -1559,60 +1562,59 @@

                                                                                                                                                                              -
                                                                                                                                                                              - - - - - - -

                                                                                                                                                                              - - Inserts a row into the SheetData before a reference row. - -

                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - row - - : - Row -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - refRow - - : - Row -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - sheetData - - : - SheetData -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - Returns: - - SheetData -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              +
                                                                                                                                                                              + +
                                                                                                                                                                              + + + + + +

                                                                                                                                                                              + Inserts a row into the SheetData before a reference row. +

                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + row + + : + Row +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + refRow + + : + Row +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + sheetData + + : + SheetData +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + Returns: + + SheetData +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              @@ -1640,7 +1642,7 @@

                                                                                                                                                                              sst : - Option<SharedStringTable> + Option<SharedStringTable>
                                                                                                                                                                              @@ -1648,7 +1650,7 @@

                                                                                                                                                                              vals : - seq<'T> + 'T seq
                                                                                                                                                                              @@ -1664,14 +1666,14 @@

                                                                                                                                                                              sheet : - SheetData + SheetData

                                                                                                                                                                              Returns: - SheetData + SheetData
                                                                                                                                                                              @@ -1679,70 +1681,69 @@

                                                                                                                                                                              -
                                                                                                                                                                              - - - - - - -

                                                                                                                                                                              - - Adds values as a row to the sheet at the given rowIndex. +

                                                                                                                                                                              + +
                                                                                                                                                                              + + + + + +

                                                                                                                                                                              + Adds values as a row to the sheet at the given rowIndex. If a row exists at the given rowIndex, shoves it downwards. - -

                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - sst - - : - Option<SharedStringTable> -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - vals - - : - seq<'T> -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - rowIndex - - : - uint32 -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - sheet - - : - SheetData -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - Returns: - - SheetData -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              +

                                                                                                                                                                              +
                                                                                                                                                                              + +
                                                                                                                                                                              +
                                                                                                                                                                              + + sst + + : + Option<SharedStringTable> +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + vals + + : + 'T seq +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + rowIndex + + : + uint32 +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + sheet + + : + SheetData +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + Returns: + + SheetData +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + @@ -1770,7 +1771,7 @@

                                                                                                                                                                              sst : - Option<SharedStringTable> + Option<SharedStringTable>
                                                                                                                                                                              @@ -1786,7 +1787,7 @@

                                                                                                                                                                              vals : - seq<'T> + 'T seq
                                                                                                                                                                              @@ -1802,14 +1803,14 @@

                                                                                                                                                                              sheet : - SheetData + SheetData

                                                                                                                                                                              Returns: - SheetData + SheetData
                                                                                                                                                                              @@ -1817,78 +1818,77 @@

                                                                                                                                                                              -
                                                                                                                                                                              - - - - - - -

                                                                                                                                                                              - - Adds values as a row to the sheet at the given rowIndex with the given horizontal offset. +

                                                                                                                                                                              + +
                                                                                                                                                                              + + + + + +

                                                                                                                                                                              + Adds values as a row to the sheet at the given rowIndex with the given horizontal offset. If a row exists at the given rowIndex, shoves it downwards. - -

                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - sst - - : - Option<SharedStringTable> -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - offset - - : - int -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - vals - - : - seq<'T> -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - rowIndex - - : - uint32 -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - sheet - - : - SheetData -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - Returns: - - SheetData -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              +

                                                                                                                                                                              +
                                                                                                                                                                              + +
                                                                                                                                                                              +
                                                                                                                                                                              + + sst + + : + Option<SharedStringTable> +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + offset + + : + int +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + vals + + : + 'T seq +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + rowIndex + + : + uint32 +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + sheet + + : + SheetData +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + Returns: + + SheetData +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + @@ -1916,7 +1916,7 @@

                                                                                                                                                                              sst : - Option<SharedStringTable> + Option<SharedStringTable>
                                                                                                                                                                              @@ -1948,14 +1948,14 @@

                                                                                                                                                                              sheet : - SheetData + SheetData

                                                                                                                                                                              Returns: - SheetData + SheetData
                                                                                                                                                                              @@ -1963,78 +1963,77 @@

                                                                                                                                                                              -
                                                                                                                                                                              - - - - - - -

                                                                                                                                                                              - - Add a value at the given row- and columnindex to sheet using a shared string table. +

                                                                                                                                                                              + +
                                                                                                                                                                              + + + + + +

                                                                                                                                                                              + Add a value at the given row- and columnindex to sheet using a shared string table. If a cell exists at the given position, it is shoved to the right. - -

                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - sst - - : - Option<SharedStringTable> -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - rowIndex - - : - uint32 -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - columnIndex - - : - uint32 -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - value - - : - 'T -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - sheet - - : - SheetData -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - Returns: - - SheetData -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              +

                                                                                                                                                                              +
                                                                                                                                                                              + +
                                                                                                                                                                              +
                                                                                                                                                                              + + sst + + : + Option<SharedStringTable> +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + rowIndex + + : + uint32 +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + columnIndex + + : + uint32 +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + value + + : + 'T +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + sheet + + : + SheetData +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + Returns: + + SheetData +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + @@ -2062,7 +2061,7 @@

                                                                                                                                                                              f : - Row -> Row + Row -> Row
                                                                                                                                                                              @@ -2070,14 +2069,14 @@

                                                                                                                                                                              sheetData : - SheetData + SheetData

                                                                                                                                                                              Returns: - SheetData + SheetData
                                                                                                                                                                              @@ -2085,52 +2084,51 @@

                                                                                                                                                                              -
                                                                                                                                                                              - - - - - - -

                                                                                                                                                                              - - Applies the given function f onto every row in the SheetData. - -

                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - f - - : - Row -> Row -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - sheetData - - : - SheetData -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - Returns: - - SheetData -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              +
                                                                                                                                                                              + +
                                                                                                                                                                              + + + + + +

                                                                                                                                                                              + Applies the given function f onto every row in the SheetData. +

                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + f + + : + Row -> Row +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + sheetData + + : + SheetData +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + Returns: + + SheetData +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              @@ -2166,14 +2164,14 @@

                                                                                                                                                                              sheetData : - SheetData + SheetData

                                                                                                                                                                              Returns: - SheetData + SheetData
                                                                                                                                                                              @@ -2181,54 +2179,51 @@

                                                                                                                                                                              -
                                                                                                                                                                              - - - - - - -

                                                                                                                                                                              - -If a row with the given rowIndex exists in the sheet, moves it one position downwards. - - 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. +

                                                                                                                                                                              + +
                                                                                                                                                                              + + + + + +
                                                                                                                                                                              If a row with the given rowIndex exists in the sheet, moves it one position downwards. 
                                                                                                                                                                               
                                                                                                                                                                              -              

                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - rowIndex - - : - uint32 -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - sheetData - - : - SheetData -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - Returns: - - SheetData -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              + 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. +
                                                                                                                                                                              + +
                                                                                                                                                                              +
                                                                                                                                                                              + + rowIndex + + : + uint32 +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + sheetData + + : + SheetData +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + Returns: + + SheetData +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + @@ -2272,14 +2267,14 @@

                                                                                                                                                                              sheetData : - SheetData + SheetData

                                                                                                                                                                              Returns: - SheetData + SheetData
                                                                                                                                                                              @@ -2287,60 +2282,59 @@

                                                                                                                                                                              -
                                                                                                                                                                              - - - - - - -

                                                                                                                                                                              - - If the row with index rowIndex exists in the sheet, moves it downwards by amount. Negative amounts will move the row upwards. - -

                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - amount - - : - int -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - rowIndex - - : - uint32 -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - sheetData - - : - SheetData -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - Returns: - - SheetData -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              +
                                                                                                                                                                              + +
                                                                                                                                                                              + + + + + +

                                                                                                                                                                              + If the row with index rowIndex exists in the sheet, moves it downwards by amount. Negative amounts will move the row upwards. +

                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + amount + + : + int +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + rowIndex + + : + uint32 +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + sheetData + + : + SheetData +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + Returns: + + SheetData +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              @@ -2376,14 +2370,14 @@

                                                                                                                                                                              sheetData : - SheetData + SheetData

                                                                                                                                                                              Returns: - SheetData + SheetData
                                                                                                                                                                              @@ -2391,52 +2385,51 @@

                                                                                                                                                                              -
                                                                                                                                                                              - - - - - - -

                                                                                                                                                                              - - Removes the row at the given rowIndex. - -

                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - index - - : - uint32 -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - sheetData - - : - SheetData -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - Returns: - - SheetData -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              +
                                                                                                                                                                              + +
                                                                                                                                                                              + + + + + +

                                                                                                                                                                              + Removes the row at the given rowIndex. +

                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + index + + : + uint32 +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + sheetData + + : + SheetData +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + Returns: + + SheetData +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              @@ -2480,14 +2473,14 @@

                                                                                                                                                                              sheet : - SheetData + SheetData

                                                                                                                                                                              Returns: - SheetData + SheetData
                                                                                                                                                                              @@ -2495,60 +2488,59 @@

                                                                                                                                                                              -
                                                                                                                                                                              - - - - - - -

                                                                                                                                                                              - - Removes the value at the given row- and columnIndex from the sheet. - -

                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - rowIndex - - : - uint32 -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - columnIndex - - : - uint32 -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - sheet - - : - SheetData -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - Returns: - - SheetData -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              +
                                                                                                                                                                              + +
                                                                                                                                                                              + + + + + +

                                                                                                                                                                              + Removes the value at the given row- and columnIndex from the sheet. +

                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + rowIndex + + : + uint32 +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + columnIndex + + : + uint32 +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + sheet + + : + SheetData +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + Returns: + + SheetData +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              @@ -2576,7 +2568,7 @@

                                                                                                                                                                              sst : - Option<SharedStringTable> + Option<SharedStringTable>
                                                                                                                                                                              @@ -2608,14 +2600,14 @@

                                                                                                                                                                              sheet : - SheetData + SheetData

                                                                                                                                                                              Returns: - SheetData + SheetData
                                                                                                                                                                              @@ -2623,78 +2615,77 @@

                                                                                                                                                                              -
                                                                                                                                                                              - - - - - - -

                                                                                                                                                                              - - Adds a value at the given row- and columnIndex using a sharedStringTable. +

                                                                                                                                                                              + +
                                                                                                                                                                              + + + + + +

                                                                                                                                                                              + Adds a value at the given row- and columnIndex using a sharedStringTable. If a cell exists at the given position, overwrites it. - -

                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - sst - - : - Option<SharedStringTable> -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - rowIndex - - : - uint32 -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - columnIndex - - : - uint32 -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - value - - : - 'T -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - sheet - - : - SheetData -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - Returns: - - SheetData -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              +

                                                                                                                                                                              +
                                                                                                                                                                              + +
                                                                                                                                                                              +
                                                                                                                                                                              + + sst + + : + Option<SharedStringTable> +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + rowIndex + + : + uint32 +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + columnIndex + + : + uint32 +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + value + + : + 'T +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + sheet + + : + SheetData +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + Returns: + + SheetData +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + @@ -2730,14 +2721,14 @@

                                                                                                                                                                              sheetData : - SheetData + SheetData

                                                                                                                                                                              Returns: - Dictionary<(int * int), string> + Dictionary<(int * int), string>
                                                                                                                                                                              @@ -2745,52 +2736,51 @@

                                                                                                                                                                              -
                                                                                                                                                                              - - - - - - -

                                                                                                                                                                              - - 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. - -

                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - sst - - : - SST -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - sheetData - - : - SheetData -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - Returns: - - Dictionary<(int * int), string> -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              +
                                                                                                                                                                              + +
                                                                                                                                                                              + + + + + +

                                                                                                                                                                              + 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. +

                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + sst + + : + SST +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + sheetData + + : + SheetData +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + Returns: + + Dictionary<(int * int), string> +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              @@ -2834,14 +2824,14 @@

                                                                                                                                                                              sheetData : - SheetData + SheetData

                                                                                                                                                                              Returns: - Cell option + Cell option
                                                                                                                                                                              @@ -2849,60 +2839,59 @@

                                                                                                                                                                              -
                                                                                                                                                                              - - - - - - -

                                                                                                                                                                              - - Return a cell at the given row- and columnIndex in the SheetData if it exists. Else returns None. - -

                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - rowIndex - - : - uint32 -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - columnIndex - - : - uint32 -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - sheetData - - : - SheetData -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - Returns: - - Cell option -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              +
                                                                                                                                                                              + +
                                                                                                                                                                              + + + + + +

                                                                                                                                                                              + Return a cell at the given row- and columnIndex in the SheetData if it exists. Else returns None. +

                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + rowIndex + + : + uint32 +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + columnIndex + + : + uint32 +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + sheetData + + : + SheetData +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + Returns: + + Cell option +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              @@ -2954,7 +2943,7 @@

                                                                                                                                                                              sheetData : - SheetData + SheetData
                                                                                                                                                                              @@ -2969,68 +2958,67 @@

                                                                                                                                                                              -
                                                                                                                                                                              - - - - - - -

                                                                                                                                                                              - - Gets the string value of the cell at the given 1-based column- and rowIndex using a sharedStringTable if it exists. Else returns None. - -

                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - sst - - : - Option<SST> -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - rowIndex - - : - uint32 -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - columnIndex - - : - uint32 -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - sheetData - - : - SheetData -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - Returns: - - string option -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              +
                                                                                                                                                                              + +
                                                                                                                                                                              + + + + + +

                                                                                                                                                                              + Gets the string value of the cell at the given 1-based column- and rowIndex using a sharedStringTable if it exists. Else returns None. +

                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + sst + + : + Option<SST> +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + rowIndex + + : + uint32 +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + columnIndex + + : + uint32 +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + sheetData + + : + SheetData +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + Returns: + + string option +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              @@ -3074,14 +3062,14 @@

                                                                                                                                                                              sheet : - SheetData + SheetData

                                                                                                                                                                              Returns: - seq<uint32 * string> option + (uint32 * string) seq option
                                                                                                                                                                              @@ -3089,60 +3077,59 @@

                                                                                                                                                                              -
                                                                                                                                                                              - - - - - - -

                                                                                                                                                                              - - 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. - -

                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - sst - - : - Option<SST> -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - rowIndex - - : - uint32 -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - sheet - - : - SheetData -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - Returns: - - seq<uint32 * string> option -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              +
                                                                                                                                                                              + +
                                                                                                                                                                              + + + + + +

                                                                                                                                                                              + 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. +

                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + sst + + : + Option<SST> +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + rowIndex + + : + uint32 +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + sheet + + : + SheetData +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + Returns: + + (uint32 * string) seq option +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              @@ -3178,14 +3165,14 @@

                                                                                                                                                                              sheetData : - SheetData + SheetData

                                                                                                                                                                              Returns: - Row option + Row option
                                                                                                                                                                              @@ -3193,52 +3180,51 @@

                                                                                                                                                                              -
                                                                                                                                                                              - - - - - - -

                                                                                                                                                                              - - Returns row matching or exceeding the given row index if it exists, else returns None. - -

                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - index - - : - uint32 -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - sheetData - - : - SheetData -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - Returns: - - Row option -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              +
                                                                                                                                                                              + +
                                                                                                                                                                              + + + + + +

                                                                                                                                                                              + Returns row matching or exceeding the given row index if it exists, else returns None. +

                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + index + + : + uint32 +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + sheetData + + : + SheetData +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + Returns: + + Row option +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              @@ -3274,14 +3260,14 @@

                                                                                                                                                                              sheetData : - SheetData + SheetData

                                                                                                                                                                              Returns: - Row option + Row option
                                                                                                                                                                              @@ -3289,52 +3275,51 @@

                                                                                                                                                                              -
                                                                                                                                                                              - - - - - - -

                                                                                                                                                                              - - Returns the row with the given rowIndex if it exists, else returns None. - -

                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - index - - : - uint32 -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - sheetData - - : - SheetData -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - Returns: - - Row option -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              +
                                                                                                                                                                              + +
                                                                                                                                                                              + + + + + +

                                                                                                                                                                              + Returns the row with the given rowIndex if it exists, else returns None. +

                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + index + + : + uint32 +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + sheetData + + : + SheetData +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + Returns: + + Row option +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              @@ -3378,14 +3363,14 @@

                                                                                                                                                                              sheet : - SheetData + SheetData

                                                                                                                                                                              Returns: - seq<string> option + string seq option
                                                                                                                                                                              @@ -3393,60 +3378,59 @@

                                                                                                                                                                              -
                                                                                                                                                                              - - - - - - -

                                                                                                                                                                              - - Gets the string value of the cell at the given 1-based column and rowIndex, if it exists, else returns None. - -

                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - sst - - : - Option<SST> -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - rowIndex - - : - uint32 -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - sheet - - : - SheetData -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - Returns: - - seq<string> option -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              +
                                                                                                                                                                              + +
                                                                                                                                                                              + + + + + +

                                                                                                                                                                              + Gets the string value of the cell at the given 1-based column and rowIndex, if it exists, else returns None. +

                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + sst + + : + Option<SST> +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + rowIndex + + : + uint32 +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + sheet + + : + SheetData +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + Returns: + + string seq option +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              @@ -3482,14 +3466,14 @@

                                                                                                                                                                              sheetData : - SheetData + SheetData

                                                                                                                                                                              Returns: - SheetData option + SheetData option
                                                                                                                                                                              @@ -3497,52 +3481,51 @@

                                                                                                                                                                              -
                                                                                                                                                                              - - - - - - -

                                                                                                                                                                              - - Removes the row at the given rowIndex if it exists, else it returns None. - -

                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - index - - : - uint32 -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - sheetData - - : - SheetData -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - Returns: - - SheetData option -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              +
                                                                                                                                                                              + +
                                                                                                                                                                              + + + + + +

                                                                                                                                                                              + Removes the row at the given rowIndex if it exists, else it returns None. +

                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + index + + : + uint32 +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + sheetData + + : + SheetData +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + Returns: + + SheetData option +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              @@ -3586,14 +3569,14 @@

                                                                                                                                                                              sheet : - SheetData + SheetData

                                                                                                                                                                              Returns: - Option<SheetData> + Option<SheetData>
                                                                                                                                                                              @@ -3601,60 +3584,59 @@

                                                                                                                                                                              -
                                                                                                                                                                              - - - - - - -

                                                                                                                                                                              - - Removes the value at the given row- and columnIndex from the sheet if it exists. Else returns None. - -

                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - rowIndex - - : - uint32 -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - columnIndex - - : - uint32 -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - sheet - - : - SheetData -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              - - Returns: - - Option<SheetData> -
                                                                                                                                                                              -
                                                                                                                                                                              -
                                                                                                                                                                              +
                                                                                                                                                                              + +
                                                                                                                                                                              + + + + + +

                                                                                                                                                                              + Removes the value at the given row- and columnIndex from the sheet if it exists. Else returns None. +

                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + rowIndex + + : + uint32 +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + columnIndex + + : + uint32 +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + sheet + + : + SheetData +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              + + Returns: + + Option<SheetData> +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              +
                                                                                                                                                                              @@ -3669,19 +3651,24 @@

                                                                                                                                                                              - - - + + + + +
                                                                                                                                                                              +
                                                                                                                                                                                +

                                                                                                                                                                                Type something to start searching.

                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-net-spreadsheet.html b/reference/fsspreadsheet-net-spreadsheet.html index 63e4e7dc..6fbf991f 100644 --- a/reference/fsspreadsheet-net-spreadsheet.html +++ b/reference/fsspreadsheet-net-spreadsheet.html @@ -1,62 +1,50 @@ - - + - - Spreadsheet (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                                                -
                                                                                                                                                                                - +
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - +
                                                                                                                                                                                + + + + + +
                                                                                                                                                                                + + +
                                                                                                                                                                                +
                                                                                                                                                                                +

                                                                                                                                                                                Spreadsheet Module

                                                                                                                                                                                @@ -89,9 +108,7 @@

                                                                                                                                                                                - - Functions for working the spreadsheet document. - + Functions for working the spreadsheet document.

                                                                                                                                                                                @@ -144,14 +161,14 @@

                                                                                                                                                                                rowValues : - seq<'T> + 'T seq

                                                                                                                                                                                Returns: - SpreadsheetDocument + SpreadsheetDocument

                                                                                                                                                                                @@ -159,50 +176,49 @@

                                                                                                                                                                                -
                                                                                                                                                                                - - - - - - -

                                                                                                                                                                                - -

                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - sheetId - - : - 'a -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - rowValues - - : - seq<'T> -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - Returns: - - SpreadsheetDocument -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                + + + + + +
                                                                                                                                                                                
                                                                                                                                                                                +                
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + sheetId + + : + 'a +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + rowValues + + : + 'T seq +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + Returns: + + SpreadsheetDocument +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                @@ -230,7 +246,7 @@

                                                                                                                                                                                spreadsheet : - SpreadsheetDocument + SpreadsheetDocument
                                                                                                                                                                                @@ -240,35 +256,34 @@

                                                                                                                                                                                -
                                                                                                                                                                                - - - - - - -

                                                                                                                                                                                - - Closes the FileStream to the spreadsheet. - -

                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - spreadsheet - - : - SpreadsheetDocument -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                + + + + + +

                                                                                                                                                                                + Closes the FileStream to the spreadsheet. +

                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + spreadsheet + + : + SpreadsheetDocument +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                @@ -311,7 +326,7 @@


                                                                                                                                                                                Returns: - SpreadsheetDocument + SpreadsheetDocument

                                                                                                                                                                                @@ -319,50 +334,49 @@

                                                                                                                                                                                -
                                                                                                                                                                                - - - - - - -

                                                                                                                                                                                - -

                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - sheetId - - : - 'a -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - rowId - - : - 'b -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - Returns: - - SpreadsheetDocument -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                + + + + + +
                                                                                                                                                                                
                                                                                                                                                                                +                
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + sheetId + + : + 'a +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + rowId + + : + 'b +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + Returns: + + SpreadsheetDocument +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                @@ -405,7 +419,7 @@


                                                                                                                                                                                Returns: - SpreadsheetDocument + SpreadsheetDocument

                                                                                                                                                                                @@ -413,52 +427,51 @@

                                                                                                                                                                                -
                                                                                                                                                                                - - - - - - -

                                                                                                                                                                                - - Opens the spreadsheet located at the given path and initialized a FileStream. - -

                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - path - - : - string -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - isEditable - - : - bool -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - Returns: - - SpreadsheetDocument -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                + + + + + +

                                                                                                                                                                                + Opens the spreadsheet located at the given path and initialized a FileStream. +

                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + path + + : + string +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + isEditable + + : + bool +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + Returns: + + SpreadsheetDocument +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                @@ -486,7 +499,7 @@

                                                                                                                                                                                stream : - Stream + Stream
                                                                                                                                                                                @@ -501,7 +514,7 @@


                                                                                                                                                                                Returns: - SpreadsheetDocument + SpreadsheetDocument
                                                                                                                                                                                @@ -509,52 +522,51 @@

                                                                                                                                                                                -
                                                                                                                                                                                - - - - - - -

                                                                                                                                                                                - - Opens the spreadsheet from the given FileStream. - -

                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - stream - - : - Stream -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - isEditable - - : - bool -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - Returns: - - SpreadsheetDocument -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                + + + + + +

                                                                                                                                                                                + Opens the spreadsheet from the given FileStream. +

                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + stream + + : + Stream +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + isEditable + + : + bool +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + Returns: + + SpreadsheetDocument +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                @@ -582,7 +594,7 @@

                                                                                                                                                                                sheet : - Sheet + Sheet
                                                                                                                                                                                @@ -590,7 +602,7 @@

                                                                                                                                                                                spreadsheetDocument : - SpreadsheetDocument + SpreadsheetDocument
                                                                                                                                                                                @@ -605,7 +617,7 @@


                                                                                                                                                                                Returns: - seq<Cell> + Cell seq
                                                                                                                                                                                @@ -613,60 +625,59 @@

                                                                                                                                                                                -
                                                                                                                                                                                - - - - - - -

                                                                                                                                                                                - - Returns a 1D-sequence of Cells for the given Sheet of the given SpreadsheetDocument. - -

                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - sheet - - : - Sheet -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - spreadsheetDocument - - : - SpreadsheetDocument -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - skipSST - - : - bool -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - Returns: - - seq<Cell> -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                + + + + + +

                                                                                                                                                                                + Returns a 1D-sequence of Cells for the given Sheet of the given SpreadsheetDocument. +

                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + sheet + + : + Sheet +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + spreadsheetDocument + + : + SpreadsheetDocument +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + skipSST + + : + bool +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + Returns: + + Cell seq +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                @@ -702,7 +713,7 @@

                                                                                                                                                                                spreadsheetDocument : - SpreadsheetDocument + SpreadsheetDocument
                                                                                                                                                                                @@ -717,7 +728,7 @@


                                                                                                                                                                                Returns: - seq<Cell> + Cell seq
                                                                                                                                                                                @@ -725,63 +736,64 @@

                                                                                                                                                                                -
                                                                                                                                                                                - - - - - - -

                                                                                                                                                                                - +

                                                                                                                                                                                + +
                                                                                                                                                                                + + + + + +

                                                                                                                                                                                + Returns a 1D-sequence of Cells for the given sheetIndex of the given SpreadsheetDocument. +

                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +

                                                                                                                                                                                + SheetIndices are 1-based.

                                                                                                                                                                                -
                                                                                                                                                                                -

                                                                                                                                                                                - SheetIndices are 1-based. -

                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - sheetID - - : - string -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - spreadsheetDocument - - : - SpreadsheetDocument -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - skipSST - - : - bool -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - Returns: - - seq<Cell> -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + sheetID + + : + string +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + spreadsheetDocument + + : + SpreadsheetDocument +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + skipSST + + : + bool +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + Returns: + + Cell seq +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + @@ -817,7 +829,7 @@

                                                                                                                                                                                spreadsheetDocument : - SpreadsheetDocument + SpreadsheetDocument
                                                                                                                                                                                @@ -832,7 +844,7 @@


                                                                                                                                                                                Returns: - seq<Cell> + Cell seq
                                                                                                                                                                                @@ -840,63 +852,64 @@

                                                                                                                                                                                -
                                                                                                                                                                                - - - - - - -

                                                                                                                                                                                - +

                                                                                                                                                                                + +
                                                                                                                                                                                + + + + + +

                                                                                                                                                                                + Returns a 1D-sequence of Cells for the given sheetIndex of the given SpreadsheetDocument. +

                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +

                                                                                                                                                                                + SheetIndices are 1-based.

                                                                                                                                                                                -
                                                                                                                                                                                -

                                                                                                                                                                                - SheetIndices are 1-based. -

                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - sheetIndex - - : - uint -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - spreadsheetDocument - - : - SpreadsheetDocument -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - skipSST - - : - bool -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - Returns: - - seq<Cell> -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + sheetIndex + + : + uint +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + spreadsheetDocument + + : + SpreadsheetDocument +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + skipSST + + : + bool +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + Returns: + + Cell seq +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + @@ -924,14 +937,14 @@

                                                                                                                                                                                spreadsheetDocument : - SpreadsheetDocument + SpreadsheetDocument

                                                                                                                                                                                Returns: - SharedStringTablePart + SharedStringTablePart
                                                                                                                                                                                @@ -939,44 +952,43 @@

                                                                                                                                                                                -
                                                                                                                                                                                - - - - - - -

                                                                                                                                                                                - - Gets the sharedStringTablePart. If it does not exist, creates a new one. - -

                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - spreadsheetDocument - - : - SpreadsheetDocument -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - Returns: - - SharedStringTablePart -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                + + + + + +

                                                                                                                                                                                + Gets the sharedStringTablePart. If it does not exist, creates a new one. +

                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + spreadsheetDocument + + : + SpreadsheetDocument +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + Returns: + + SharedStringTablePart +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                @@ -1012,14 +1024,14 @@

                                                                                                                                                                                spreadsheetDocument : - SpreadsheetDocument + SpreadsheetDocument

                                                                                                                                                                                Returns: - seq<Row> + Row seq
                                                                                                                                                                                @@ -1027,52 +1039,51 @@

                                                                                                                                                                                -
                                                                                                                                                                                - - - - - - -

                                                                                                                                                                                - - Returns a sequence of rows containing the cells for the given 0-based sheetIndex of the given spreadsheetDocument. - -

                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - sheetIndex - - : - uint -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - spreadsheetDocument - - : - SpreadsheetDocument -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - Returns: - - seq<Row> -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                + + + + + +

                                                                                                                                                                                + Returns a sequence of rows containing the cells for the given 0-based sheetIndex of the given spreadsheetDocument. +

                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + sheetIndex + + : + uint +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + spreadsheetDocument + + : + SpreadsheetDocument +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + Returns: + + Row seq +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                @@ -1100,14 +1111,14 @@

                                                                                                                                                                                spreadsheetDocument : - SpreadsheetDocument + SpreadsheetDocument

                                                                                                                                                                                Returns: - SharedStringTable + SharedStringTable
                                                                                                                                                                                @@ -1115,44 +1126,43 @@

                                                                                                                                                                                -
                                                                                                                                                                                - - - - - - -

                                                                                                                                                                                - - Gets the sharedStringTable of a spreadsheet. - -

                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - spreadsheetDocument - - : - SpreadsheetDocument -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - Returns: - - SharedStringTable -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                + + + + + +

                                                                                                                                                                                + Gets the sharedStringTable of a spreadsheet. +

                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + spreadsheetDocument + + : + SpreadsheetDocument +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + Returns: + + SharedStringTable +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                @@ -1180,14 +1190,14 @@

                                                                                                                                                                                spreadsheet : - SpreadsheetDocument + SpreadsheetDocument

                                                                                                                                                                                Returns: - WorkbookPart + WorkbookPart
                                                                                                                                                                                @@ -1195,44 +1205,43 @@

                                                                                                                                                                                -
                                                                                                                                                                                - - - - - - -

                                                                                                                                                                                - - Gets the workbookPart of the spreadsheet. - -

                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - spreadsheet - - : - SpreadsheetDocument -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - Returns: - - WorkbookPart -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                + + + + + +

                                                                                                                                                                                + Gets the workbookPart of the spreadsheet. +

                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + spreadsheet + + : + SpreadsheetDocument +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + Returns: + + WorkbookPart +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                @@ -1275,7 +1284,7 @@


                                                                                                                                                                                Returns: - SpreadsheetDocument + SpreadsheetDocument
                                                                                                                                                                                @@ -1283,52 +1292,51 @@

                                                                                                                                                                                -
                                                                                                                                                                                - - - - - - -

                                                                                                                                                                                - - Initializes a new spreadsheet with an empty sheet at the given path. - -

                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - sheetName - - : - string -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - path - - : - string -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - Returns: - - SpreadsheetDocument -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                + + + + + +

                                                                                                                                                                                + Initializes a new spreadsheet with an empty sheet at the given path. +

                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + sheetName + + : + string +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + path + + : + string +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + Returns: + + SpreadsheetDocument +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                @@ -1363,7 +1371,7 @@


                                                                                                                                                                                Returns: - SpreadsheetDocument + SpreadsheetDocument
                                                                                                                                                                                @@ -1371,44 +1379,43 @@

                                                                                                                                                                                -
                                                                                                                                                                                - - - - - - -

                                                                                                                                                                                - - Initializes a new empty spreadsheet at the given path. - -

                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - path - - : - string -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - Returns: - - SpreadsheetDocument -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                + + + + + +

                                                                                                                                                                                + Initializes a new empty spreadsheet at the given path. +

                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + path + + : + string +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + Returns: + + SpreadsheetDocument +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                @@ -1436,14 +1443,14 @@

                                                                                                                                                                                stream : - Stream + Stream

                                                                                                                                                                                Returns: - SpreadsheetDocument + SpreadsheetDocument
                                                                                                                                                                                @@ -1451,44 +1458,43 @@

                                                                                                                                                                                -
                                                                                                                                                                                - - - - - - -

                                                                                                                                                                                - - Initializes a new empty spreadsheet in the given stream. - -

                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - stream - - : - Stream -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - Returns: - - SpreadsheetDocument -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                + + + + + +

                                                                                                                                                                                + Initializes a new empty spreadsheet in the given stream. +

                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + stream + + : + Stream +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + Returns: + + SpreadsheetDocument +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                @@ -1524,14 +1530,14 @@

                                                                                                                                                                                stream : - Stream + Stream

                                                                                                                                                                                Returns: - SpreadsheetDocument + SpreadsheetDocument
                                                                                                                                                                                @@ -1539,52 +1545,51 @@

                                                                                                                                                                                -
                                                                                                                                                                                - - - - - - -

                                                                                                                                                                                - - Initializes a new spreadsheet with an empty sheet in the given stream. - -

                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - sheetName - - : - string -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - stream - - : - Stream -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - Returns: - - SpreadsheetDocument -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                + + + + + +

                                                                                                                                                                                + Initializes a new spreadsheet with an empty sheet in the given stream. +

                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + sheetName + + : + string +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + stream + + : + Stream +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + Returns: + + SpreadsheetDocument +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                @@ -1627,7 +1632,7 @@


                                                                                                                                                                                Returns: - SpreadsheetDocument + SpreadsheetDocument
                                                                                                                                                                                @@ -1635,52 +1640,51 @@

                                                                                                                                                                                -
                                                                                                                                                                                - - - - - - -

                                                                                                                                                                                - - Initializes a new spreadsheet with an empty sheet and a sharedStringTable at the given path. - -

                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - sheetName - - : - string -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - path - - : - string -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - Returns: - - SpreadsheetDocument -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                + + + + + +

                                                                                                                                                                                + Initializes a new spreadsheet with an empty sheet and a sharedStringTable at the given path. +

                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + sheetName + + : + string +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + path + + : + string +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + Returns: + + SpreadsheetDocument +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                @@ -1716,14 +1720,14 @@

                                                                                                                                                                                stream : - Stream + Stream

                                                                                                                                                                                Returns: - SpreadsheetDocument + SpreadsheetDocument
                                                                                                                                                                                @@ -1731,52 +1735,51 @@

                                                                                                                                                                                -
                                                                                                                                                                                - - - - - - -

                                                                                                                                                                                - - Initializes a new spreadsheet with an empty sheet and a sharedStringTable in the given stream. - -

                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - sheetName - - : - string -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - stream - - : - Stream -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - Returns: - - SpreadsheetDocument -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                + + + + + +

                                                                                                                                                                                + Initializes a new spreadsheet with an empty sheet and a sharedStringTable in the given stream. +

                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + sheetName + + : + string +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + stream + + : + Stream +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + Returns: + + SpreadsheetDocument +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                @@ -1804,14 +1807,14 @@

                                                                                                                                                                                spreadsheet : - SpreadsheetDocument + SpreadsheetDocument

                                                                                                                                                                                Returns: - WorkbookPart + WorkbookPart
                                                                                                                                                                                @@ -1819,44 +1822,43 @@

                                                                                                                                                                                -
                                                                                                                                                                                - - - - - - -

                                                                                                                                                                                - - Initialized a new workbookPart in the spreadsheetDocument but only if there is none. - -

                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - spreadsheet - - : - SpreadsheetDocument -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - Returns: - - WorkbookPart -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                + + + + + +

                                                                                                                                                                                + Initialized a new workbookPart in the spreadsheetDocument but only if there is none. +

                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + spreadsheet + + : + SpreadsheetDocument +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + Returns: + + WorkbookPart +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                @@ -1900,14 +1902,14 @@

                                                                                                                                                                                rowValues : - seq<'T> + 'T seq

                                                                                                                                                                                Returns: - SpreadsheetDocument + SpreadsheetDocument
                                                                                                                                                                                @@ -1915,58 +1917,57 @@

                                                                                                                                                                                -
                                                                                                                                                                                - - - - - - -

                                                                                                                                                                                - -

                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - sheetId - - : - 'a -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - rowId - - : - 'b -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - rowValues - - : - seq<'T> -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - Returns: - - SpreadsheetDocument -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                + + + + + +
                                                                                                                                                                                
                                                                                                                                                                                +                
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + sheetId + + : + 'a +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + rowId + + : + 'b +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + rowValues + + : + 'T seq +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + Returns: + + SpreadsheetDocument +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                @@ -2025,7 +2026,7 @@


                                                                                                                                                                                Returns: - SpreadsheetDocument + SpreadsheetDocument
                                                                                                                                                                                @@ -2033,66 +2034,65 @@

                                                                                                                                                                                -
                                                                                                                                                                                - - - - - - -

                                                                                                                                                                                - -

                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - sheetId - - : - 'a -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - rowId - - : - 'b -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - colId - - : - 'c -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - value - - : - 'T -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - Returns: - - SpreadsheetDocument -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                + + + + + +
                                                                                                                                                                                
                                                                                                                                                                                +                
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + sheetId + + : + 'a +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + rowId + + : + 'b +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + colId + + : + 'c +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + value + + : + 'T +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + Returns: + + SpreadsheetDocument +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                @@ -2136,14 +2136,14 @@

                                                                                                                                                                                rowF : - Row -> Row + Row -> Row

                                                                                                                                                                                Returns: - SpreadsheetDocument + SpreadsheetDocument
                                                                                                                                                                                @@ -2151,58 +2151,57 @@

                                                                                                                                                                                -
                                                                                                                                                                                - - - - - - -

                                                                                                                                                                                - -

                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - sheetId - - : - 'a -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - rowId - - : - 'b -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - rowF - - : - Row -> Row -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - Returns: - - SpreadsheetDocument -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                + + + + + +
                                                                                                                                                                                
                                                                                                                                                                                +                
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + sheetId + + : + 'a +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + rowId + + : + 'b +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + rowF + + : + Row -> Row +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + Returns: + + SpreadsheetDocument +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                @@ -2238,14 +2237,14 @@

                                                                                                                                                                                rowF : - Row -> Row + Row -> Row

                                                                                                                                                                                Returns: - SpreadsheetDocument + SpreadsheetDocument
                                                                                                                                                                                @@ -2253,50 +2252,49 @@

                                                                                                                                                                                -
                                                                                                                                                                                - - - - - - -

                                                                                                                                                                                - -

                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - sheetId - - : - 'a -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - rowF - - : - Row -> Row -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - Returns: - - SpreadsheetDocument -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                + + + + + +
                                                                                                                                                                                
                                                                                                                                                                                +                
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + sheetId + + : + 'a +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + rowF + + : + Row -> Row +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + Returns: + + SpreadsheetDocument +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                @@ -2332,14 +2330,14 @@

                                                                                                                                                                                spreadsheet : - SpreadsheetDocument + SpreadsheetDocument

                                                                                                                                                                                Returns: - SpreadsheetDocument + SpreadsheetDocument
                                                                                                                                                                                @@ -2347,52 +2345,51 @@

                                                                                                                                                                                -
                                                                                                                                                                                - - - - - - -

                                                                                                                                                                                - - Saves changes made to the spreadsheet to the given path. - -

                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - path - - : - string -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - spreadsheet - - : - SpreadsheetDocument -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - Returns: - - SpreadsheetDocument -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                + + + + + +

                                                                                                                                                                                + Saves changes made to the spreadsheet to the given path. +

                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + path + + : + string +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + spreadsheet + + : + SpreadsheetDocument +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + Returns: + + SpreadsheetDocument +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                @@ -2420,14 +2417,14 @@

                                                                                                                                                                                spreadsheet : - SpreadsheetDocument + SpreadsheetDocument

                                                                                                                                                                                Returns: - SpreadsheetDocument + SpreadsheetDocument
                                                                                                                                                                                @@ -2435,44 +2432,43 @@

                                                                                                                                                                                -
                                                                                                                                                                                - - - - - - -

                                                                                                                                                                                - - Saves changes made to the spreadsheet. - -

                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - spreadsheet - - : - SpreadsheetDocument -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - Returns: - - SpreadsheetDocument -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                + + + + + +

                                                                                                                                                                                + Saves changes made to the spreadsheet. +

                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + spreadsheet + + : + SpreadsheetDocument +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + Returns: + + SpreadsheetDocument +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                @@ -2531,7 +2527,7 @@


                                                                                                                                                                                Returns: - SpreadsheetDocument + SpreadsheetDocument
                                                                                                                                                                                @@ -2539,66 +2535,65 @@

                                                                                                                                                                                -
                                                                                                                                                                                - - - - - - -

                                                                                                                                                                                - -

                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - sheetId - - : - 'a -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - rowId - - : - 'b -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - colId - - : - 'c -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - value - - : - 'T -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - Returns: - - SpreadsheetDocument -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                + + + + + +
                                                                                                                                                                                
                                                                                                                                                                                +                
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + sheetId + + : + 'a +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + rowId + + : + 'b +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + colId + + : + 'c +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + value + + : + 'T +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + Returns: + + SpreadsheetDocument +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                @@ -2626,14 +2621,14 @@

                                                                                                                                                                                spreadsheetDocument : - SpreadsheetDocument + SpreadsheetDocument

                                                                                                                                                                                Returns: - SharedStringTable option + SharedStringTable option
                                                                                                                                                                                @@ -2641,44 +2636,43 @@

                                                                                                                                                                                -
                                                                                                                                                                                - - - - - - -

                                                                                                                                                                                - - Gets the sharedStringTable of the spreadsheet if it exists, else returns None. - -

                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - spreadsheetDocument - - : - SpreadsheetDocument -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - Returns: - - SharedStringTable option -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                + + + + + +

                                                                                                                                                                                + Gets the sharedStringTable of the spreadsheet if it exists, else returns None. +

                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + spreadsheetDocument + + : + SpreadsheetDocument +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + Returns: + + SharedStringTable option +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                @@ -2714,14 +2708,14 @@

                                                                                                                                                                                spreadsheetDocument : - SpreadsheetDocument + SpreadsheetDocument

                                                                                                                                                                                Returns: - SheetData option + SheetData option
                                                                                                                                                                                @@ -2729,52 +2723,51 @@

                                                                                                                                                                                -
                                                                                                                                                                                - - - - - - -

                                                                                                                                                                                - - Returns the sheetData for the given 0-based sheetIndex of the given spreadsheetDocument. - -

                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - sheetIndex - - : - uint -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - spreadsheetDocument - - : - SpreadsheetDocument -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - Returns: - - SheetData option -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                + + + + + +

                                                                                                                                                                                + Returns the sheetData for the given 0-based sheetIndex of the given spreadsheetDocument. +

                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + sheetIndex + + : + uint +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + spreadsheetDocument + + : + SpreadsheetDocument +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + Returns: + + SheetData option +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                @@ -2810,14 +2803,14 @@

                                                                                                                                                                                spreadsheetDocument : - SpreadsheetDocument + SpreadsheetDocument

                                                                                                                                                                                Returns: - SheetData option + SheetData option
                                                                                                                                                                                @@ -2825,52 +2818,51 @@

                                                                                                                                                                                -
                                                                                                                                                                                - - - - - - -

                                                                                                                                                                                - - Returns the sheetData for the given 0-based sheetIndex of the given spreadsheetDocument if it exists. Else returns None. - -

                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - name - - : - string -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - spreadsheetDocument - - : - SpreadsheetDocument -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - Returns: - - SheetData option -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                + + + + + +

                                                                                                                                                                                + Returns the sheetData for the given 0-based sheetIndex of the given spreadsheetDocument if it exists. Else returns None. +

                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + name + + : + string +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + spreadsheetDocument + + : + SpreadsheetDocument +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + Returns: + + SheetData option +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                @@ -2906,14 +2898,14 @@

                                                                                                                                                                                spreadsheetDocument : - SpreadsheetDocument + SpreadsheetDocument

                                                                                                                                                                                Returns: - WorksheetPart option + WorksheetPart option
                                                                                                                                                                                @@ -2921,52 +2913,51 @@

                                                                                                                                                                                -
                                                                                                                                                                                - - - - - - -

                                                                                                                                                                                - - Returns the worksheetPart for the given 0-based sheetIndex of the given spreadsheetDocument. - -

                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - sheetIndex - - : - uint -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - spreadsheetDocument - - : - SpreadsheetDocument -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - Returns: - - WorksheetPart option -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                + + + + + +

                                                                                                                                                                                + Returns the worksheetPart for the given 0-based sheetIndex of the given spreadsheetDocument. +

                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + sheetIndex + + : + uint +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + spreadsheetDocument + + : + SpreadsheetDocument +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + Returns: + + WorksheetPart option +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                @@ -3002,14 +2993,14 @@

                                                                                                                                                                                spreadsheetDocument : - SpreadsheetDocument + SpreadsheetDocument

                                                                                                                                                                                Returns: - WorksheetPart option + WorksheetPart option
                                                                                                                                                                                @@ -3017,52 +3008,51 @@

                                                                                                                                                                                -
                                                                                                                                                                                - - - - - - -

                                                                                                                                                                                - - Returns the worksheetPart associated to the sheet with the given name. - -

                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - name - - : - string -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - spreadsheetDocument - - : - SpreadsheetDocument -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                - - Returns: - - WorksheetPart option -
                                                                                                                                                                                -
                                                                                                                                                                                -
                                                                                                                                                                                +
                                                                                                                                                                                + +
                                                                                                                                                                                + + + + + +

                                                                                                                                                                                + Returns the worksheetPart associated to the sheet with the given name. +

                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + name + + : + string +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + spreadsheetDocument + + : + SpreadsheetDocument +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                + + Returns: + + WorksheetPart option +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                +
                                                                                                                                                                                @@ -3077,19 +3067,24 @@

                                                                                                                                                                                - - - + + + + +
                                                                                                                                                                                +
                                                                                                                                                                                  +

                                                                                                                                                                                  Type something to start searching.

                                                                                                                                                                                  +
                                                                                                                                                                                  +
                                                                                                                                                                                  + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-net-sst.html b/reference/fsspreadsheet-net-sst.html index fc373a75..1c885a48 100644 --- a/reference/fsspreadsheet-net-sst.html +++ b/reference/fsspreadsheet-net-sst.html @@ -1,62 +1,50 @@ - - + - - SST (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                                                  -
                                                                                                                                                                                  - +
                                                                                                                                                                                  -
                                                                                                                                                                                  -
                                                                                                                                                                                  -
                                                                                                                                                                                  - +
                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                  + + +
                                                                                                                                                                                  +
                                                                                                                                                                                  +

                                                                                                                                                                                  SST Type

                                                                                                                                                                                  @@ -91,27 +110,27 @@

                                                                                                                                                                                  Base Type: - Array + Array
                                                                                                                                                                                  All Interfaces: - IList + IList , - ICollection + ICollection , - IStructuralComparable + IStructuralComparable , - IStructuralEquatable + IStructuralEquatable , - ICloneable + ICloneable , - IList<string> + IList<string> , - ICollection<string> + ICollection<string> , - IEnumerable<string> + IEnumerable<string> , - IEnumerable + IEnumerable
                                                                                                                                                                                  @@ -122,19 +141,24 @@

                                                                                                                                                                                  -
                                                                                                                                                                                  -
                                                                                                                                                                                  -
                                                                                                                                                                                  + + + + +
                                                                                                                                                                                  +
                                                                                                                                                                                    +

                                                                                                                                                                                    Type something to start searching.

                                                                                                                                                                                    +
                                                                                                                                                                                    +
                                                                                                                                                                                    + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-net-stylesheet-border.html b/reference/fsspreadsheet-net-stylesheet-border.html index bf0fb943..38e2933b 100644 --- a/reference/fsspreadsheet-net-stylesheet-border.html +++ b/reference/fsspreadsheet-net-stylesheet-border.html @@ -1,62 +1,50 @@ - - + - - Border (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                                                    -
                                                                                                                                                                                    - +
                                                                                                                                                                                    -
                                                                                                                                                                                    -
                                                                                                                                                                                    -
                                                                                                                                                                                    - +
                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                    + + +
                                                                                                                                                                                    +
                                                                                                                                                                                    +

                                                                                                                                                                                    Border Module

                                                                                                                                                                                    @@ -147,7 +166,7 @@


                                                                                                                                                                                    Returns: - Border + Border

                                                                                                                                                                                    @@ -155,23 +174,6 @@

                                                                                                                                                                                    -
                                                                                                                                                                                    - - - - - - -

                                                                                                                                                                                    - -

                                                                                                                                                                                    -
                                                                                                                                                                                    @@ -187,7 +189,7 @@

                                                                                                                                                                                    Returns: - Border + Border

                                                                                                                                                                                    @@ -225,7 +227,7 @@


                                                                                                                                                                                    Returns: - Borders + Borders

                                                                                                                                                                                    @@ -233,23 +235,6 @@

                                                                                                                                                                                    -
                                                                                                                                                                                    - - - - - - -

                                                                                                                                                                                    - -

                                                                                                                                                                                    -
                                                                                                                                                                                    @@ -265,7 +250,7 @@

                                                                                                                                                                                    Returns: - Borders + Borders

                                                                                                                                                                                    @@ -296,7 +281,7 @@

                                                                                                                                                                                    stylesheet : - Stylesheet + Stylesheet
                                                                                                                                                                                    @@ -306,30 +291,13 @@

                                                                                                                                                                                    -
                                                                                                                                                                                    - - - - - - -

                                                                                                                                                                                    - -

                                                                                                                                                                                    -
                                                                                                                                                                                    stylesheet : - Stylesheet + Stylesheet
                                                                                                                                                                                    @@ -347,19 +315,24 @@

                                                                                                                                                                                    - - - + + + + +
                                                                                                                                                                                    +
                                                                                                                                                                                      +

                                                                                                                                                                                      Type something to start searching.

                                                                                                                                                                                      +
                                                                                                                                                                                      +
                                                                                                                                                                                      + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-net-stylesheet-cellformat.html b/reference/fsspreadsheet-net-stylesheet-cellformat.html index c1057671..f7b3da66 100644 --- a/reference/fsspreadsheet-net-stylesheet-cellformat.html +++ b/reference/fsspreadsheet-net-stylesheet-cellformat.html @@ -1,62 +1,50 @@ - - + - - CellFormat (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                                                      -
                                                                                                                                                                                      - +
                                                                                                                                                                                      -
                                                                                                                                                                                      -
                                                                                                                                                                                      -
                                                                                                                                                                                      - +
                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                      + + +
                                                                                                                                                                                      +
                                                                                                                                                                                      +

                                                                                                                                                                                      CellFormat Module

                                                                                                                                                                                      @@ -140,7 +159,7 @@

                                                                                                                                                                                      cf : - CellFormat + CellFormat
                                                                                                                                                                                      @@ -148,7 +167,7 @@

                                                                                                                                                                                      stylesheet : - Stylesheet + Stylesheet
                                                                                                                                                                                      @@ -158,30 +177,13 @@

                                                                                                                                                                                      -
                                                                                                                                                                                      - - - - - - -

                                                                                                                                                                                      - -

                                                                                                                                                                                      -
                                                                                                                                                                                      cf : - CellFormat + CellFormat
                                                                                                                                                                                      @@ -189,7 +191,7 @@

                                                                                                                                                                                      stylesheet : - Stylesheet + Stylesheet

                                                                                                                                                                                      @@ -220,7 +222,7 @@

                                                                                                                                                                                      cf : - CellFormat + CellFormat
                                                                                                                                                                                      @@ -228,7 +230,7 @@

                                                                                                                                                                                      stylesheet : - Stylesheet + Stylesheet
                                                                                                                                                                                      @@ -243,30 +245,13 @@

                                                                                                                                                                                      -
                                                                                                                                                                                      - - - - - - -

                                                                                                                                                                                      - -

                                                                                                                                                                                      -
                                                                                                                                                                                      cf : - CellFormat + CellFormat
                                                                                                                                                                                      @@ -274,7 +259,7 @@

                                                                                                                                                                                      stylesheet : - Stylesheet + Stylesheet

                                                                                                                                                                                      @@ -314,7 +299,7 @@

                                                                                                                                                                                      stylesheet : - Stylesheet + Stylesheet
                                                                                                                                                                                      @@ -329,30 +314,13 @@

                                                                                                                                                                                      -
                                                                                                                                                                                      - - - - - - -

                                                                                                                                                                                      - -

                                                                                                                                                                                      -
                                                                                                                                                                                      stylesheet : - Stylesheet + Stylesheet
                                                                                                                                                                                      @@ -400,14 +368,14 @@

                                                                                                                                                                                      stylesheet : - Stylesheet + Stylesheet

                                                                                                                                                                                      Returns: - CellFormat + CellFormat

                                                                                                                                                                                      @@ -415,23 +383,6 @@

                                                                                                                                                                                      -
                                                                                                                                                                                      - - - - - - -

                                                                                                                                                                                      - -

                                                                                                                                                                                      -
                                                                                                                                                                                      @@ -446,7 +397,7 @@

                                                                                                                                                                                      stylesheet : - Stylesheet + Stylesheet

                                                                                                                                                                                      @@ -455,7 +406,7 @@

                                                                                                                                                                                      Returns: - CellFormat + CellFormat
                                                                                                                                                                                      @@ -493,7 +444,7 @@


                                                                                                                                                                                      Returns: - CellFormat + CellFormat

                                                                                                                                                                                      @@ -501,23 +452,6 @@

                                                                                                                                                                                      -
                                                                                                                                                                                      - - - - - - -

                                                                                                                                                                                      - -

                                                                                                                                                                                      -
                                                                                                                                                                                      @@ -533,7 +467,7 @@

                                                                                                                                                                                      Returns: - CellFormat + CellFormat

                                                                                                                                                                                      @@ -571,7 +505,7 @@


                                                                                                                                                                                      Returns: - CellFormat + CellFormat
                                                                                                                                                                                      @@ -579,23 +513,6 @@

                                                                                                                                                                                      -
                                                                                                                                                                                      - - - - - - -

                                                                                                                                                                                      - -

                                                                                                                                                                                      -
                                                                                                                                                                                      @@ -611,7 +528,7 @@

                                                                                                                                                                                      Returns: - CellFormat + CellFormat

                                                                                                                                                                                      @@ -649,7 +566,7 @@


                                                                                                                                                                                      Returns: - CellFormat + CellFormat
                                                                                                                                                                                      @@ -657,23 +574,6 @@

                                                                                                                                                                                      -
                                                                                                                                                                                      - - - - - - -

                                                                                                                                                                                      - -

                                                                                                                                                                                      -
                                                                                                                                                                                      @@ -689,7 +589,7 @@

                                                                                                                                                                                      Returns: - CellFormat + CellFormat

                                                                                                                                                                                      @@ -727,7 +627,7 @@


                                                                                                                                                                                      Returns: - CellFormats + CellFormats
                                                                                                                                                                                      @@ -735,23 +635,6 @@

                                                                                                                                                                                      -
                                                                                                                                                                                      - - - - - - -

                                                                                                                                                                                      - -

                                                                                                                                                                                      -
                                                                                                                                                                                      @@ -767,7 +650,7 @@

                                                                                                                                                                                      Returns: - CellFormats + CellFormats

                                                                                                                                                                                      @@ -798,7 +681,7 @@

                                                                                                                                                                                      stylesheet : - Stylesheet + Stylesheet
                                                                                                                                                                                      @@ -806,7 +689,7 @@

                                                                                                                                                                                      cf : - CellFormat + CellFormat
                                                                                                                                                                                      @@ -821,30 +704,13 @@

                                                                                                                                                                                      -
                                                                                                                                                                                      - - - - - - -

                                                                                                                                                                                      - -

                                                                                                                                                                                      -
                                                                                                                                                                                      stylesheet : - Stylesheet + Stylesheet
                                                                                                                                                                                      @@ -852,7 +718,7 @@

                                                                                                                                                                                      cf : - CellFormat + CellFormat

                                                                                                                                                                                      @@ -900,7 +766,7 @@

                                                                                                                                                                                      cf : - CellFormat + CellFormat
                                                                                                                                                                                      @@ -908,7 +774,7 @@

                                                                                                                                                                                      stylesheet : - Stylesheet + Stylesheet
                                                                                                                                                                                      @@ -918,23 +784,6 @@

                                                                                                                                                                                      -
                                                                                                                                                                                      - - - - - - -

                                                                                                                                                                                      - -

                                                                                                                                                                                      -
                                                                                                                                                                                      @@ -949,7 +798,7 @@

                                                                                                                                                                                      cf : - CellFormat + CellFormat

                                                                                                                                                                                      @@ -957,7 +806,7 @@

                                                                                                                                                                                      stylesheet : - Stylesheet + Stylesheet

                                                                                                                                                                                      @@ -988,7 +837,7 @@

                                                                                                                                                                                      cf1 : - CellFormat + CellFormat
                                                                                                                                                                                      @@ -996,7 +845,7 @@

                                                                                                                                                                                      cf2 : - CellFormat + CellFormat
                                                                                                                                                                                      @@ -1011,30 +860,13 @@

                                                                                                                                                                                      -
                                                                                                                                                                                      - - - - - - -

                                                                                                                                                                                      - -

                                                                                                                                                                                      -
                                                                                                                                                                                      cf1 : - CellFormat + CellFormat
                                                                                                                                                                                      @@ -1042,7 +874,7 @@

                                                                                                                                                                                      cf2 : - CellFormat + CellFormat

                                                                                                                                                                                      @@ -1090,14 +922,14 @@

                                                                                                                                                                                      stylesheet : - Stylesheet + Stylesheet

                                                                                                                                                                                      Returns: - CellFormat option + CellFormat option
                                                                                                                                                                                      @@ -1105,23 +937,6 @@

                                                                                                                                                                                      -
                                                                                                                                                                                      - - - - - - -

                                                                                                                                                                                      - -

                                                                                                                                                                                      -
                                                                                                                                                                                      @@ -1136,7 +951,7 @@

                                                                                                                                                                                      stylesheet : - Stylesheet + Stylesheet

                                                                                                                                                                                      @@ -1145,7 +960,7 @@

                                                                                                                                                                                      Returns: - CellFormat option + CellFormat option
                                                                                                                                                                                      @@ -1176,7 +991,7 @@

                                                                                                                                                                                      cellFormat : - CellFormat + CellFormat
                                                                                                                                                                                      @@ -1184,7 +999,7 @@

                                                                                                                                                                                      stylesheet : - Stylesheet + Stylesheet
                                                                                                                                                                                      @@ -1199,30 +1014,13 @@

                                                                                                                                                                                      -
                                                                                                                                                                                      - - - - - - -

                                                                                                                                                                                      - -

                                                                                                                                                                                      -
                                                                                                                                                                                      cellFormat : - CellFormat + CellFormat
                                                                                                                                                                                      @@ -1230,7 +1028,7 @@

                                                                                                                                                                                      stylesheet : - Stylesheet + Stylesheet

                                                                                                                                                                                      @@ -1270,7 +1068,7 @@

                                                                                                                                                                                      stylesheet : - Stylesheet + Stylesheet
                                                                                                                                                                                      @@ -1280,30 +1078,13 @@

                                                                                                                                                                                      -
                                                                                                                                                                                      - - - - - - -

                                                                                                                                                                                      - -

                                                                                                                                                                                      -
                                                                                                                                                                                      stylesheet : - Stylesheet + Stylesheet
                                                                                                                                                                                      @@ -1321,19 +1102,24 @@

                                                                                                                                                                                      - - - + + + + +
                                                                                                                                                                                      +
                                                                                                                                                                                        +

                                                                                                                                                                                        Type something to start searching.

                                                                                                                                                                                        +
                                                                                                                                                                                        +
                                                                                                                                                                                        + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-net-stylesheet-fill.html b/reference/fsspreadsheet-net-stylesheet-fill.html index 967fd4a9..bbd1562f 100644 --- a/reference/fsspreadsheet-net-stylesheet-fill.html +++ b/reference/fsspreadsheet-net-stylesheet-fill.html @@ -1,62 +1,50 @@ - - + - - Fill (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                                                        -
                                                                                                                                                                                        - +
                                                                                                                                                                                        -
                                                                                                                                                                                        -
                                                                                                                                                                                        -
                                                                                                                                                                                        - +
                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                        + + +
                                                                                                                                                                                        +
                                                                                                                                                                                        +

                                                                                                                                                                                        Fill Module

                                                                                                                                                                                        @@ -147,7 +166,7 @@


                                                                                                                                                                                        Returns: - Fill + Fill

                                                                                                                                                                                        @@ -155,23 +174,6 @@

                                                                                                                                                                                        -
                                                                                                                                                                                        - - - - - - -

                                                                                                                                                                                        - -

                                                                                                                                                                                        -
                                                                                                                                                                                        @@ -187,7 +189,7 @@

                                                                                                                                                                                        Returns: - Fill + Fill

                                                                                                                                                                                        @@ -225,7 +227,7 @@


                                                                                                                                                                                        Returns: - Fills + Fills

                                                                                                                                                                                        @@ -233,23 +235,6 @@

                                                                                                                                                                                        -
                                                                                                                                                                                        - - - - - - -

                                                                                                                                                                                        - -

                                                                                                                                                                                        -
                                                                                                                                                                                        @@ -265,7 +250,7 @@

                                                                                                                                                                                        Returns: - Fills + Fills

                                                                                                                                                                                        @@ -296,7 +281,7 @@

                                                                                                                                                                                        stylesheet : - Stylesheet + Stylesheet
                                                                                                                                                                                        @@ -306,30 +291,13 @@

                                                                                                                                                                                        -
                                                                                                                                                                                        - - - - - - -

                                                                                                                                                                                        - -

                                                                                                                                                                                        -
                                                                                                                                                                                        stylesheet : - Stylesheet + Stylesheet
                                                                                                                                                                                        @@ -347,19 +315,24 @@

                                                                                                                                                                                        - - - + + + + +
                                                                                                                                                                                        +
                                                                                                                                                                                          +

                                                                                                                                                                                          Type something to start searching.

                                                                                                                                                                                          +
                                                                                                                                                                                          +
                                                                                                                                                                                          + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-net-stylesheet-font.html b/reference/fsspreadsheet-net-stylesheet-font.html index 11e83d7e..3537d9e2 100644 --- a/reference/fsspreadsheet-net-stylesheet-font.html +++ b/reference/fsspreadsheet-net-stylesheet-font.html @@ -1,62 +1,50 @@ - - + - - Font (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                                                          -
                                                                                                                                                                                          - +
                                                                                                                                                                                          -
                                                                                                                                                                                          -
                                                                                                                                                                                          -
                                                                                                                                                                                          - +
                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                          + + +
                                                                                                                                                                                          +
                                                                                                                                                                                          +

                                                                                                                                                                                          Font Module

                                                                                                                                                                                          @@ -147,7 +166,7 @@


                                                                                                                                                                                          Returns: - Font + Font

                                                                                                                                                                                          @@ -155,23 +174,6 @@

                                                                                                                                                                                          -
                                                                                                                                                                                          - - - - - - -

                                                                                                                                                                                          - -

                                                                                                                                                                                          -
                                                                                                                                                                                          @@ -187,7 +189,7 @@

                                                                                                                                                                                          Returns: - Font + Font

                                                                                                                                                                                          @@ -225,7 +227,7 @@


                                                                                                                                                                                          Returns: - Fonts + Fonts

                                                                                                                                                                                          @@ -233,23 +235,6 @@

                                                                                                                                                                                          -
                                                                                                                                                                                          - - - - - - -

                                                                                                                                                                                          - -

                                                                                                                                                                                          -
                                                                                                                                                                                          @@ -265,7 +250,7 @@

                                                                                                                                                                                          Returns: - Fonts + Fonts

                                                                                                                                                                                          @@ -296,7 +281,7 @@

                                                                                                                                                                                          stylesheet : - Stylesheet + Stylesheet
                                                                                                                                                                                          @@ -306,30 +291,13 @@

                                                                                                                                                                                          -
                                                                                                                                                                                          - - - - - - -

                                                                                                                                                                                          - -

                                                                                                                                                                                          -
                                                                                                                                                                                          stylesheet : - Stylesheet + Stylesheet
                                                                                                                                                                                          @@ -347,19 +315,24 @@

                                                                                                                                                                                          - - - + + + + +
                                                                                                                                                                                          +
                                                                                                                                                                                            +

                                                                                                                                                                                            Type something to start searching.

                                                                                                                                                                                            +
                                                                                                                                                                                            +
                                                                                                                                                                                            + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-net-stylesheet-numberingformat.html b/reference/fsspreadsheet-net-stylesheet-numberingformat.html index f9c82836..8f981476 100644 --- a/reference/fsspreadsheet-net-stylesheet-numberingformat.html +++ b/reference/fsspreadsheet-net-stylesheet-numberingformat.html @@ -1,62 +1,50 @@ - - + - - NumberingFormat (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                                                            -
                                                                                                                                                                                            - +
                                                                                                                                                                                            -
                                                                                                                                                                                            -
                                                                                                                                                                                            -
                                                                                                                                                                                            - +
                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                            + + +
                                                                                                                                                                                            +
                                                                                                                                                                                            +

                                                                                                                                                                                            NumberingFormat Module

                                                                                                                                                                                            @@ -148,14 +167,14 @@

                                                                                                                                                                                            stylesheet : - Stylesheet + Stylesheet

                                                                                                                                                                                            Returns: - NumberingFormat + NumberingFormat

                                                                                                                                                                                            @@ -163,23 +182,6 @@

                                                                                                                                                                                            -
                                                                                                                                                                                            - - - - - - -

                                                                                                                                                                                            - -

                                                                                                                                                                                            -
                                                                                                                                                                                            @@ -194,7 +196,7 @@

                                                                                                                                                                                            stylesheet : - Stylesheet + Stylesheet

                                                                                                                                                                                            @@ -203,7 +205,7 @@

                                                                                                                                                                                            Returns: - NumberingFormat + NumberingFormat
                                                                                                                                                                                            @@ -234,7 +236,7 @@

                                                                                                                                                                                            nf : - NumberingFormat + NumberingFormat
                                                                                                                                                                                            @@ -249,30 +251,13 @@

                                                                                                                                                                                            -
                                                                                                                                                                                            - - - - - - -

                                                                                                                                                                                            - -

                                                                                                                                                                                            -
                                                                                                                                                                                            nf : - NumberingFormat + NumberingFormat
                                                                                                                                                                                            @@ -312,7 +297,7 @@

                                                                                                                                                                                            nf : - NumberingFormat + NumberingFormat
                                                                                                                                                                                            @@ -327,30 +312,13 @@

                                                                                                                                                                                            -
                                                                                                                                                                                            - - - - - - -

                                                                                                                                                                                            - -

                                                                                                                                                                                            -
                                                                                                                                                                                            nf : - NumberingFormat + NumberingFormat
                                                                                                                                                                                            @@ -398,14 +366,14 @@

                                                                                                                                                                                            stylesheet : - Stylesheet + Stylesheet

                                                                                                                                                                                            Returns: - NumberingFormat option + NumberingFormat option

                                                                                                                                                                                            @@ -413,23 +381,6 @@

                                                                                                                                                                                            -
                                                                                                                                                                                            - - - - - - -

                                                                                                                                                                                            - -

                                                                                                                                                                                            -
                                                                                                                                                                                            @@ -444,7 +395,7 @@

                                                                                                                                                                                            stylesheet : - Stylesheet + Stylesheet

                                                                                                                                                                                            @@ -453,7 +404,7 @@

                                                                                                                                                                                            Returns: - NumberingFormat option + NumberingFormat option
                                                                                                                                                                                            @@ -471,19 +422,24 @@

                                                                                                                                                                                            - - - + + + + +
                                                                                                                                                                                            +
                                                                                                                                                                                              +

                                                                                                                                                                                              Type something to start searching.

                                                                                                                                                                                              +
                                                                                                                                                                                              +
                                                                                                                                                                                              + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-net-stylesheet.html b/reference/fsspreadsheet-net-stylesheet.html index 5a4c6c9d..60693da2 100644 --- a/reference/fsspreadsheet-net-stylesheet.html +++ b/reference/fsspreadsheet-net-stylesheet.html @@ -1,62 +1,50 @@ - - + - - Stylesheet (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                                                              -
                                                                                                                                                                                              - +
                                                                                                                                                                                              -
                                                                                                                                                                                              -
                                                                                                                                                                                              -
                                                                                                                                                                                              - +
                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                              + + +
                                                                                                                                                                                              +
                                                                                                                                                                                              +

                                                                                                                                                                                              Stylesheet Module

                                                                                                                                                                                              @@ -122,16 +141,13 @@

                                                                                                                                                                                              - - +

                                                                                                                                                                                              @@ -152,16 +168,13 @@

                                                                                                                                                                                              - - +

                                                                                                                                                                                              @@ -182,16 +195,13 @@

                                                                                                                                                                                              - - +

                                                                                                                                                                                              @@ -212,16 +222,13 @@

                                                                                                                                                                                              - - +

                                                                                                                                                                                              @@ -242,16 +249,13 @@

                                                                                                                                                                                              - - +

                                                                                                                                                                                              @@ -303,14 +307,14 @@

                                                                                                                                                                                              doc : - SpreadsheetDocument + SpreadsheetDocument

                                                                                                                                                                                              Returns: - Stylesheet + Stylesheet

                                                                                                                                                                                              @@ -318,30 +322,13 @@

                                                                                                                                                                                              -
                                                                                                                                                                                              - - - - - - -

                                                                                                                                                                                              - -

                                                                                                                                                                                              -
                                                                                                                                                                                              doc : - SpreadsheetDocument + SpreadsheetDocument
                                                                                                                                                                                              @@ -350,7 +337,7 @@

                                                                                                                                                                                              Returns: - Stylesheet + Stylesheet
                                                                                                                                                                                              @@ -381,14 +368,14 @@

                                                                                                                                                                                              doc : - SpreadsheetDocument + SpreadsheetDocument

                                                                                                                                                                                              Returns: - Stylesheet + Stylesheet

                                                                                                                                                                                              @@ -396,30 +383,13 @@

                                                                                                                                                                                              -
                                                                                                                                                                                              - - - - - - -

                                                                                                                                                                                              - -

                                                                                                                                                                                              -
                                                                                                                                                                                              doc : - SpreadsheetDocument + SpreadsheetDocument
                                                                                                                                                                                              @@ -428,7 +398,7 @@

                                                                                                                                                                                              Returns: - Stylesheet + Stylesheet
                                                                                                                                                                                              @@ -459,14 +429,14 @@

                                                                                                                                                                                              doc : - SpreadsheetDocument + SpreadsheetDocument

                                                                                                                                                                                              Returns: - Stylesheet option + Stylesheet option

                                                                                                                                                                                              @@ -474,30 +444,13 @@

                                                                                                                                                                                              -
                                                                                                                                                                                              - - - - - - -

                                                                                                                                                                                              - -

                                                                                                                                                                                              -
                                                                                                                                                                                              doc : - SpreadsheetDocument + SpreadsheetDocument
                                                                                                                                                                                              @@ -506,7 +459,7 @@

                                                                                                                                                                                              Returns: - Stylesheet option + Stylesheet option
                                                                                                                                                                                              @@ -524,19 +477,24 @@

                                                                                                                                                                                              -
                                                                                                                                                                                              -
                                                                                                                                                                                              -
                                                                                                                                                                                              + + + + +
                                                                                                                                                                                              +
                                                                                                                                                                                                +

                                                                                                                                                                                                Type something to start searching.

                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-net-table-area.html b/reference/fsspreadsheet-net-table-area.html index cc6b0826..996f2c86 100644 --- a/reference/fsspreadsheet-net-table-area.html +++ b/reference/fsspreadsheet-net-table-area.html @@ -1,62 +1,50 @@ - - + - - Area (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                                                                -
                                                                                                                                                                                                - +
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                - +
                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                +

                                                                                                                                                                                                Area Module

                                                                                                                                                                                                @@ -95,9 +114,7 @@

                                                                                                                                                                                                - - The areas marks the area in which the table lies. - + The areas marks the area in which the table lies.

                                                                                                                                                                                                @@ -150,14 +167,14 @@

                                                                                                                                                                                                area : - StringValue + StringValue

                                                                                                                                                                                                Returns: - StringValue + StringValue

                                                                                                                                                                                                @@ -165,52 +182,51 @@

                                                                                                                                                                                                -
                                                                                                                                                                                                - - - - - - -

                                                                                                                                                                                                - - Extends the left boundary of the area by the given amount (positive amount decreases the area to left and vice versa). - -

                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                - - amount - - : - int -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                - - area - - : - StringValue -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                - - Returns: - - StringValue -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                + Extends the left boundary of the area by the given amount (positive amount decreases the area to left and vice versa). +

                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + amount + + : + int +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + area + + : + StringValue +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + Returns: + + StringValue +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                @@ -246,14 +262,14 @@

                                                                                                                                                                                                area : - StringValue + StringValue

                                                                                                                                                                                                Returns: - StringValue + StringValue

                                                                                                                                                                                                @@ -261,52 +277,51 @@

                                                                                                                                                                                                -
                                                                                                                                                                                                - - - - - - -

                                                                                                                                                                                                - - Extends the right boundary of the area by the given amount (positive amount increases area to right and vice versa). - -

                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                - - amount - - : - int -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                - - area - - : - StringValue -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                - - Returns: - - StringValue -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                + Extends the right boundary of the area by the given amount (positive amount increases area to right and vice versa). +

                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + amount + + : + int +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + area + + : + StringValue +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + Returns: + + StringValue +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                @@ -334,7 +349,7 @@

                                                                                                                                                                                                area : - StringValue + StringValue
                                                                                                                                                                                                @@ -349,44 +364,43 @@

                                                                                                                                                                                                -
                                                                                                                                                                                                - - - - - - -

                                                                                                                                                                                                - - Returns true if the A1:A1-style area is of correct format. - -

                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                - - area - - : - StringValue -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                - - Returns: - - bool -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                + Returns true if the A1:A1-style area is of correct format. +

                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + area + + : + StringValue +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + Returns: + + bool +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                @@ -414,7 +428,7 @@

                                                                                                                                                                                                area : - StringValue + StringValue
                                                                                                                                                                                                @@ -429,44 +443,43 @@

                                                                                                                                                                                                -
                                                                                                                                                                                                - - - - - - -

                                                                                                                                                                                                - - Gets the left boundary of the area. - -

                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                - - area - - : - StringValue -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                - - Returns: - - uint32 -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                + Gets the left boundary of the area. +

                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + area + + : + StringValue +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + Returns: + + uint32 +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                @@ -494,7 +507,7 @@

                                                                                                                                                                                                area : - StringValue + StringValue
                                                                                                                                                                                                @@ -509,44 +522,43 @@

                                                                                                                                                                                                -
                                                                                                                                                                                                - - - - - - -

                                                                                                                                                                                                - - Gets the lower boundary of the area. - -

                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                - - area - - : - StringValue -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                - - Returns: - - uint32 -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                + Gets the lower boundary of the area. +

                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + area + + : + StringValue +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + Returns: + + uint32 +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                @@ -582,14 +594,14 @@

                                                                                                                                                                                                area : - StringValue + StringValue

                                                                                                                                                                                                Returns: - StringValue + StringValue
                                                                                                                                                                                                @@ -597,52 +609,51 @@

                                                                                                                                                                                                -
                                                                                                                                                                                                - - - - - - -

                                                                                                                                                                                                - - Moves both start and end of the area by the given amount (positive amount moves area to right and vice versa). - -

                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                - - amount - - : - int -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                - - area - - : - StringValue -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                - - Returns: - - StringValue -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                + Moves both start and end of the area by the given amount (positive amount moves area to right and vice versa). +

                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + amount + + : + int +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + area + + : + StringValue +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + Returns: + + StringValue +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                @@ -678,14 +689,14 @@

                                                                                                                                                                                                area : - StringValue + StringValue

                                                                                                                                                                                                Returns: - StringValue + StringValue
                                                                                                                                                                                                @@ -693,52 +704,51 @@

                                                                                                                                                                                                -
                                                                                                                                                                                                - - - - - - -

                                                                                                                                                                                                - - Moves both start and end of the area by the given amount (positive amount moves area to right and vice versa). - -

                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                - - amount - - : - int -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                - - area - - : - StringValue -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                - - Returns: - - StringValue -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                + Moves both start and end of the area by the given amount (positive amount moves area to right and vice versa). +

                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + amount + + : + int +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + area + + : + StringValue +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + Returns: + + StringValue +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                @@ -781,7 +791,7 @@


                                                                                                                                                                                                Returns: - StringValue + StringValue
                                                                                                                                                                                                @@ -789,52 +799,51 @@

                                                                                                                                                                                                -
                                                                                                                                                                                                - - - - - - -

                                                                                                                                                                                                - - Given A1-based top left start and bottom right end indices, returns a "A1:A1"-style area- - -

                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                - - fromCellReference - - : - string -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                - - toCellReference - - : - string -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                - - Returns: - - StringValue -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                + Given A1-based top left start and bottom right end indices, returns a "A1:A1"-style area- +

                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + fromCellReference + + : + string +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + toCellReference + + : + string +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + Returns: + + StringValue +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                @@ -870,7 +879,7 @@

                                                                                                                                                                                                area : - StringValue + StringValue
                                                                                                                                                                                                @@ -885,52 +894,51 @@

                                                                                                                                                                                                -
                                                                                                                                                                                                - - - - - - -

                                                                                                                                                                                                - - Returns true if the reference does not lie in the boundary of the area. - -

                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                - - reference - - : - string -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                - - area - - : - StringValue -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                - - Returns: - - bool -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                + Returns true if the reference does not lie in the boundary of the area. +

                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + reference + + : + string +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + area + + : + StringValue +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + Returns: + + bool +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                @@ -966,7 +974,7 @@

                                                                                                                                                                                                area : - StringValue + StringValue
                                                                                                                                                                                                @@ -981,52 +989,51 @@

                                                                                                                                                                                                -
                                                                                                                                                                                                - - - - - - -

                                                                                                                                                                                                - - Returns true if the column index of the reference exceeds the upper boundary of the area. - -

                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                - - reference - - : - string -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                - - area - - : - StringValue -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                - - Returns: - - bool -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                + Returns true if the column index of the reference exceeds the upper boundary of the area. +

                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + reference + + : + string +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + area + + : + StringValue +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + Returns: + + bool +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                @@ -1062,7 +1069,7 @@

                                                                                                                                                                                                area : - StringValue + StringValue
                                                                                                                                                                                                @@ -1077,52 +1084,51 @@

                                                                                                                                                                                                -
                                                                                                                                                                                                - - - - - - -

                                                                                                                                                                                                - - Returns true if the column index of the reference exceeds the lower boundary of the area. - -

                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                - - reference - - : - string -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                - - area - - : - StringValue -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                - - Returns: - - bool -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                + Returns true if the column index of the reference exceeds the lower boundary of the area. +

                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + reference + + : + string +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + area + + : + StringValue +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + Returns: + + bool +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                @@ -1158,7 +1164,7 @@

                                                                                                                                                                                                area : - StringValue + StringValue
                                                                                                                                                                                                @@ -1173,52 +1179,51 @@

                                                                                                                                                                                                -
                                                                                                                                                                                                - - - - - - -

                                                                                                                                                                                                - - Returns true if the column index of the reference exceeds the left boundary of the area. - -

                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                - - reference - - : - string -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                - - area - - : - StringValue -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                - - Returns: - - bool -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                + Returns true if the column index of the reference exceeds the left boundary of the area. +

                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + reference + + : + string +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + area + + : + StringValue +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + Returns: + + bool +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                @@ -1254,7 +1259,7 @@

                                                                                                                                                                                                area : - StringValue + StringValue
                                                                                                                                                                                                @@ -1269,52 +1274,51 @@

                                                                                                                                                                                                -
                                                                                                                                                                                                - - - - - - -

                                                                                                                                                                                                - - Returns true if the column index of the reference exceeds the right boundary of the area. - -

                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                - - reference - - : - string -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                - - area - - : - StringValue -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                - - Returns: - - bool -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                + Returns true if the column index of the reference exceeds the right boundary of the area. +

                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + reference + + : + string +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + area + + : + StringValue +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + Returns: + + bool +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                @@ -1342,7 +1346,7 @@

                                                                                                                                                                                                area : - StringValue + StringValue
                                                                                                                                                                                                @@ -1357,44 +1361,43 @@

                                                                                                                                                                                                -
                                                                                                                                                                                                - - - - - - -

                                                                                                                                                                                                - - Gets the right boundary of the area. - -

                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                - - area - - : - StringValue -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                - - Returns: - - uint32 -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                + Gets the right boundary of the area. +

                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + area + + : + StringValue +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + Returns: + + uint32 +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                @@ -1422,7 +1425,7 @@

                                                                                                                                                                                                area : - StringValue + StringValue
                                                                                                                                                                                                @@ -1437,44 +1440,43 @@

                                                                                                                                                                                                -
                                                                                                                                                                                                - - - - - - -

                                                                                                                                                                                                - - Given a "A1:A1"-style area, returns A1-based cell start and end cellReferences. - -

                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                - - area - - : - StringValue -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                - - Returns: - - string * string -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                + Given a "A1:A1"-style area, returns A1-based cell start and end cellReferences. +

                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + area + + : + StringValue +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + Returns: + + string * string +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                @@ -1502,7 +1504,7 @@

                                                                                                                                                                                                area : - StringValue + StringValue
                                                                                                                                                                                                @@ -1517,44 +1519,43 @@

                                                                                                                                                                                                -
                                                                                                                                                                                                - - - - - - -

                                                                                                                                                                                                - - Gets the Upper boundary of the area. - -

                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                - - area - - : - StringValue -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                - - Returns: - - uint32 -
                                                                                                                                                                                                -
                                                                                                                                                                                                -
                                                                                                                                                                                                +
                                                                                                                                                                                                + +
                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                + Gets the Upper boundary of the area. +

                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + area + + : + StringValue +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                + + Returns: + + uint32 +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                +
                                                                                                                                                                                                @@ -1569,19 +1570,24 @@

                                                                                                                                                                                                - - - + + + + +
                                                                                                                                                                                                +
                                                                                                                                                                                                  +

                                                                                                                                                                                                  Type something to start searching.

                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-net-table-tablecolumn.html b/reference/fsspreadsheet-net-table-tablecolumn.html index 286db0c8..82eb3ab7 100644 --- a/reference/fsspreadsheet-net-table-tablecolumn.html +++ b/reference/fsspreadsheet-net-table-tablecolumn.html @@ -1,62 +1,50 @@ - - + - - TableColumn (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                                                                  -
                                                                                                                                                                                                  - +
                                                                                                                                                                                                  -
                                                                                                                                                                                                  -
                                                                                                                                                                                                  -
                                                                                                                                                                                                  - +
                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                  + + +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +

                                                                                                                                                                                                  TableColumn Module

                                                                                                                                                                                                  @@ -95,9 +114,7 @@

                                                                                                                                                                                                  - - Functions for working with a single tableColumn of a table. - + Functions for working with a single tableColumn of a table.

                                                                                                                                                                                                  @@ -157,7 +174,7 @@


                                                                                                                                                                                                  Returns: - TableColumn + TableColumn

                                                                                                                                                                                                  @@ -165,52 +182,51 @@

                                                                                                                                                                                                  -
                                                                                                                                                                                                  - - - - - - -

                                                                                                                                                                                                  - - Creates a tableColumn of the given name and id. - -

                                                                                                                                                                                                  -
                                                                                                                                                                                                  -
                                                                                                                                                                                                  -
                                                                                                                                                                                                  - - id - - : - uint -
                                                                                                                                                                                                  -
                                                                                                                                                                                                  -
                                                                                                                                                                                                  - - name - - : - string -
                                                                                                                                                                                                  -
                                                                                                                                                                                                  -
                                                                                                                                                                                                  -
                                                                                                                                                                                                  -
                                                                                                                                                                                                  - - Returns: - - TableColumn -
                                                                                                                                                                                                  -
                                                                                                                                                                                                  -
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + +
                                                                                                                                                                                                  + + + + + +

                                                                                                                                                                                                  + Creates a tableColumn of the given name and id. +

                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + + id + + : + uint +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + + name + + : + string +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + + Returns: + + TableColumn +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  @@ -238,7 +254,7 @@

                                                                                                                                                                                                  tableColumn : - TableColumn + TableColumn
                                                                                                                                                                                                  @@ -253,44 +269,43 @@

                                                                                                                                                                                                  -
                                                                                                                                                                                                  - - - - - - -

                                                                                                                                                                                                  - - Gets 1-based column index of tableColumn. - -

                                                                                                                                                                                                  -
                                                                                                                                                                                                  -
                                                                                                                                                                                                  -
                                                                                                                                                                                                  - - tableColumn - - : - TableColumn -
                                                                                                                                                                                                  -
                                                                                                                                                                                                  -
                                                                                                                                                                                                  -
                                                                                                                                                                                                  -
                                                                                                                                                                                                  - - Returns: - - uint32 -
                                                                                                                                                                                                  -
                                                                                                                                                                                                  -
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + +
                                                                                                                                                                                                  + + + + + +

                                                                                                                                                                                                  + Gets 1-based column index of tableColumn. +

                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + + tableColumn + + : + TableColumn +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + + Returns: + + uint32 +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  @@ -318,7 +333,7 @@

                                                                                                                                                                                                  tableColumn : - TableColumn + TableColumn
                                                                                                                                                                                                  @@ -333,44 +348,43 @@

                                                                                                                                                                                                  -
                                                                                                                                                                                                  - - - - - - -

                                                                                                                                                                                                  - - Gets Name of a tableColumn. - -

                                                                                                                                                                                                  -
                                                                                                                                                                                                  -
                                                                                                                                                                                                  -
                                                                                                                                                                                                  - - tableColumn - - : - TableColumn -
                                                                                                                                                                                                  -
                                                                                                                                                                                                  -
                                                                                                                                                                                                  -
                                                                                                                                                                                                  -
                                                                                                                                                                                                  - - Returns: - - string -
                                                                                                                                                                                                  -
                                                                                                                                                                                                  -
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + +
                                                                                                                                                                                                  + + + + + +

                                                                                                                                                                                                  + Gets Name of a tableColumn. +

                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + + tableColumn + + : + TableColumn +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  + + Returns: + + string +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  +
                                                                                                                                                                                                  @@ -385,19 +399,24 @@

                                                                                                                                                                                                  -
                                                                                                                                                                                                  - - + + + + +
                                                                                                                                                                                                  +
                                                                                                                                                                                                    +

                                                                                                                                                                                                    Type something to start searching.

                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-net-table-tablecolumns.html b/reference/fsspreadsheet-net-table-tablecolumns.html index 3a6da3d9..109c62ee 100644 --- a/reference/fsspreadsheet-net-table-tablecolumns.html +++ b/reference/fsspreadsheet-net-table-tablecolumns.html @@ -1,62 +1,50 @@ - - + - - TableColumns (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                                                                    -
                                                                                                                                                                                                    - +
                                                                                                                                                                                                    -
                                                                                                                                                                                                    -
                                                                                                                                                                                                    -
                                                                                                                                                                                                    - +
                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                    + + +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +

                                                                                                                                                                                                    TableColumns Module

                                                                                                                                                                                                    @@ -95,9 +114,7 @@

                                                                                                                                                                                                    - - Functions for working with the columns of a table. - + Functions for working with the columns of a table.

                                                                                                                                                                                                    @@ -142,7 +159,7 @@

                                                                                                                                                                                                    tableColumns : - TableColumns + TableColumns
                                                                                                                                                                                                    @@ -157,44 +174,43 @@

                                                                                                                                                                                                    -
                                                                                                                                                                                                    - - - - - - -

                                                                                                                                                                                                    - - Retruns the number of columns in a tableColumns element. - -

                                                                                                                                                                                                    -
                                                                                                                                                                                                    -
                                                                                                                                                                                                    -
                                                                                                                                                                                                    - - tableColumns - - : - TableColumns -
                                                                                                                                                                                                    -
                                                                                                                                                                                                    -
                                                                                                                                                                                                    -
                                                                                                                                                                                                    -
                                                                                                                                                                                                    - - Returns: - - int -
                                                                                                                                                                                                    -
                                                                                                                                                                                                    -
                                                                                                                                                                                                    +
                                                                                                                                                                                                    + +
                                                                                                                                                                                                    + + + + + +

                                                                                                                                                                                                    + Retruns the number of columns in a tableColumns element. +

                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    + + tableColumns + + : + TableColumns +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    + + Returns: + + int +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    @@ -222,14 +238,14 @@

                                                                                                                                                                                                    tableColumns : - seq<TableColumn> + TableColumn seq

                                                                                                                                                                                                    Returns: - TableColumns + TableColumns

                                                                                                                                                                                                    @@ -237,44 +253,43 @@

                                                                                                                                                                                                    -
                                                                                                                                                                                                    - - - - - - -

                                                                                                                                                                                                    - - Creates a tableColumns sequence. - -

                                                                                                                                                                                                    -
                                                                                                                                                                                                    -
                                                                                                                                                                                                    -
                                                                                                                                                                                                    - - tableColumns - - : - seq<TableColumn> -
                                                                                                                                                                                                    -
                                                                                                                                                                                                    -
                                                                                                                                                                                                    -
                                                                                                                                                                                                    -
                                                                                                                                                                                                    - - Returns: - - TableColumns -
                                                                                                                                                                                                    -
                                                                                                                                                                                                    -
                                                                                                                                                                                                    +
                                                                                                                                                                                                    + +
                                                                                                                                                                                                    + + + + + +

                                                                                                                                                                                                    + Creates a tableColumns sequence. +

                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    + + tableColumns + + : + TableColumn seq +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    + + Returns: + + TableColumns +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    @@ -302,14 +317,14 @@

                                                                                                                                                                                                    table : - Table + Table

                                                                                                                                                                                                    Returns: - TableColumns + TableColumns

                                                                                                                                                                                                    @@ -317,44 +332,43 @@

                                                                                                                                                                                                    -
                                                                                                                                                                                                    - - - - - - -

                                                                                                                                                                                                    - - Gets the tableColumns from a table. - -

                                                                                                                                                                                                    -
                                                                                                                                                                                                    -
                                                                                                                                                                                                    -
                                                                                                                                                                                                    - - table - - : - Table -
                                                                                                                                                                                                    -
                                                                                                                                                                                                    -
                                                                                                                                                                                                    -
                                                                                                                                                                                                    -
                                                                                                                                                                                                    - - Returns: - - TableColumns -
                                                                                                                                                                                                    -
                                                                                                                                                                                                    -
                                                                                                                                                                                                    +
                                                                                                                                                                                                    + +
                                                                                                                                                                                                    + + + + + +

                                                                                                                                                                                                    + Gets the tableColumns from a table. +

                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    + + table + + : + Table +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    + + Returns: + + TableColumns +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    @@ -382,14 +396,14 @@

                                                                                                                                                                                                    tableColumns : - TableColumns + TableColumns

                                                                                                                                                                                                    Returns: - IEnumerable<TableColumn> + IEnumerable<TableColumn>

                                                                                                                                                                                                    @@ -397,44 +411,43 @@

                                                                                                                                                                                                    -
                                                                                                                                                                                                    - - - - - - -

                                                                                                                                                                                                    - - Gets the columns from a tableColumns element. - -

                                                                                                                                                                                                    -
                                                                                                                                                                                                    -
                                                                                                                                                                                                    -
                                                                                                                                                                                                    - - tableColumns - - : - TableColumns -
                                                                                                                                                                                                    -
                                                                                                                                                                                                    -
                                                                                                                                                                                                    -
                                                                                                                                                                                                    -
                                                                                                                                                                                                    - - Returns: - - IEnumerable<TableColumn> -
                                                                                                                                                                                                    -
                                                                                                                                                                                                    -
                                                                                                                                                                                                    +
                                                                                                                                                                                                    + +
                                                                                                                                                                                                    + + + + + +

                                                                                                                                                                                                    + Gets the columns from a tableColumns element. +

                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    + + tableColumns + + : + TableColumns +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    + + Returns: + + IEnumerable<TableColumn> +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    +
                                                                                                                                                                                                    @@ -449,19 +462,24 @@

                                                                                                                                                                                                    - - - + + + + +
                                                                                                                                                                                                    +
                                                                                                                                                                                                      +

                                                                                                                                                                                                      Type something to start searching.

                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-net-table.html b/reference/fsspreadsheet-net-table.html index eb60654a..5d2d91f7 100644 --- a/reference/fsspreadsheet-net-table.html +++ b/reference/fsspreadsheet-net-table.html @@ -1,62 +1,50 @@ - - + - - Table (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - +
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - +
                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                      + + +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +

                                                                                                                                                                                                      Table Module

                                                                                                                                                                                                      @@ -89,14 +108,12 @@

                                                                                                                                                                                                      - - Functions for working with tables. + Functions for working with tables. The table object itself just stores the name, the headers and the area in which the table lies. The values are stored in the sheetData object associated with the same worksheet as the table. Therefore, in order to work with tables, one should retrieve both the sheetData and the table. The value retrieval functions ask for both. -

                                                                                                                                                                                                      @@ -129,21 +146,16 @@

                                                                                                                                                                                                      - - +

                                                                                                                                                                                                      - - The areas marks the area in which the table lies. - + The areas marks the area in which the table lies.

                                                                                                                                                                                                      @@ -161,21 +173,16 @@

                                                                                                                                                                                                      - - +

                                                                                                                                                                                                      - - Functions for working with a single tableColumn of a table. - + Functions for working with a single tableColumn of a table.

                                                                                                                                                                                                      @@ -193,21 +200,16 @@

                                                                                                                                                                                                      - - +

                                                                                                                                                                                                      - - Functions for working with the columns of a table. - + Functions for working with the columns of a table.

                                                                                                                                                                                                      @@ -256,7 +258,7 @@

                                                                                                                                                                                                      workbookPart : - WorkbookPart + WorkbookPart
                                                                                                                                                                                                      @@ -264,7 +266,7 @@

                                                                                                                                                                                                      worksheetPart : - WorksheetPart + WorksheetPart
                                                                                                                                                                                                      @@ -272,14 +274,14 @@

                                                                                                                                                                                                      table : - Table + Table

                                                                                                                                                                                                      Returns: - WorksheetPart + WorksheetPart

                                                                                                                                                                                                      @@ -287,60 +289,59 @@

                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - - - - - -

                                                                                                                                                                                                      - - Adds a table to the worksheetPart. - -

                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - workbookPart - - : - WorkbookPart -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - worksheetPart - - : - WorksheetPart -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - table - - : - Table -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - Returns: - - WorksheetPart -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + +
                                                                                                                                                                                                      + + + + + +

                                                                                                                                                                                                      + Adds a table to the worksheetPart. +

                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + workbookPart + + : + WorkbookPart +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + worksheetPart + + : + WorksheetPart +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + table + + : + Table +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + Returns: + + WorksheetPart +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      @@ -376,7 +377,7 @@

                                                                                                                                                                                                      area : - StringValue + StringValue
                                                                                                                                                                                                      @@ -384,14 +385,14 @@

                                                                                                                                                                                                      tableColumns : - seq<TableColumn> + TableColumn seq

                                                                                                                                                                                                      Returns: - Table + Table

                                                                                                                                                                                                      @@ -399,60 +400,59 @@

                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - - - - - -

                                                                                                                                                                                                      - - Creates a table from a name a area and tableColumns. - -

                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - displayName - - : - string -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - area - - : - StringValue -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - tableColumns - - : - seq<TableColumn> -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - Returns: - - Table -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + +
                                                                                                                                                                                                      + + + + + +

                                                                                                                                                                                                      + Creates a table from a name a area and tableColumns. +

                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + displayName + + : + string +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + area + + : + StringValue +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + tableColumns + + : + TableColumn seq +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + Returns: + + Table +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      @@ -480,14 +480,14 @@

                                                                                                                                                                                                      table : - Table + Table

                                                                                                                                                                                                      Returns: - StringValue + StringValue

                                                                                                                                                                                                      @@ -495,44 +495,43 @@

                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - - - - - -

                                                                                                                                                                                                      - - Gets the area of the table. - -

                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - table - - : - Table -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - Returns: - - StringValue -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + +
                                                                                                                                                                                                      + + + + + +

                                                                                                                                                                                                      + Gets the area of the table. +

                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + table + + : + Table +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + Returns: + + StringValue +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      @@ -568,14 +567,14 @@

                                                                                                                                                                                                      worksheetPart : - WorksheetPart + WorksheetPart

                                                                                                                                                                                                      Returns: - Table + Table
                                                                                                                                                                                                      @@ -583,52 +582,51 @@

                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - - - - - -

                                                                                                                                                                                                      - - Returns a table for which the predicate applied to its name returns true. - -

                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - predicate - - : - string -> bool -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - worksheetPart - - : - WorksheetPart -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - Returns: - - Table -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + +
                                                                                                                                                                                                      + + + + + +

                                                                                                                                                                                                      + Returns a table for which the predicate applied to its name returns true. +

                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + predicate + + : + string -> bool +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + worksheetPart + + : + WorksheetPart +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + Returns: + + Table +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      @@ -656,14 +654,14 @@

                                                                                                                                                                                                      table : - Table + Table

                                                                                                                                                                                                      Returns: - seq<string> + string seq
                                                                                                                                                                                                      @@ -671,44 +669,43 @@

                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - - - - - -

                                                                                                                                                                                                      - - Returns the headers of the columns. - -

                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - table - - : - Table -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - Returns: - - seq<string> -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + +
                                                                                                                                                                                                      + + + + + +

                                                                                                                                                                                                      + Returns the headers of the columns. +

                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + table + + : + Table +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + Returns: + + string seq +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      @@ -736,7 +733,7 @@

                                                                                                                                                                                                      table : - Table + Table
                                                                                                                                                                                                      @@ -751,44 +748,43 @@

                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - - - - - -

                                                                                                                                                                                                      - - Gets the diplayName of a table. - -

                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - table - - : - Table -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - Returns: - - string -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + +
                                                                                                                                                                                                      + + + + + +

                                                                                                                                                                                                      + Gets the diplayName of a table. +

                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + table + + : + Table +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + Returns: + + string +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      @@ -816,7 +812,7 @@

                                                                                                                                                                                                      table : - Table + Table
                                                                                                                                                                                                      @@ -831,44 +827,43 @@

                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - - - - - -

                                                                                                                                                                                                      - - Gets the name of a table. - -

                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - table - - : - Table -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - Returns: - - string -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + +
                                                                                                                                                                                                      + + + + + +

                                                                                                                                                                                                      + Gets the name of a table. +

                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + table + + : + Table +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + Returns: + + string +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      @@ -896,14 +891,14 @@

                                                                                                                                                                                                      worksheetPart : - WorksheetPart + WorksheetPart

                                                                                                                                                                                                      Returns: - seq<Table> + Table seq
                                                                                                                                                                                                      @@ -911,44 +906,43 @@

                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - - - - - -

                                                                                                                                                                                                      - - List all tables contained in the worksheet. - -

                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - worksheetPart - - : - WorksheetPart -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - Returns: - - seq<Table> -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + +
                                                                                                                                                                                                      + + + + + +

                                                                                                                                                                                                      + List all tables contained in the worksheet. +

                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + worksheetPart + + : + WorksheetPart +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + Returns: + + Table seq +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      @@ -976,7 +970,7 @@

                                                                                                                                                                                                      area : - StringValue + StringValue
                                                                                                                                                                                                      @@ -984,7 +978,7 @@

                                                                                                                                                                                                      table : - Table + Table
                                                                                                                                                                                                      @@ -994,43 +988,42 @@

                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - - - - - -

                                                                                                                                                                                                      - - Sets the area of the table. - -

                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - area - - : - StringValue -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - table - - : - Table -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + +
                                                                                                                                                                                                      + + + + + +

                                                                                                                                                                                                      + Sets the area of the table. +

                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + area + + : + StringValue +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + table + + : + Table +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      @@ -1066,14 +1059,14 @@

                                                                                                                                                                                                      table : - Table + Table

                                                                                                                                                                                                      Returns: - Table + Table
                                                                                                                                                                                                      @@ -1081,52 +1074,51 @@

                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - - - - - -

                                                                                                                                                                                                      - - Sets the displayName of the table. - -

                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - displayName - - : - string -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - table - - : - Table -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - Returns: - - Table -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + +
                                                                                                                                                                                                      + + + + + +

                                                                                                                                                                                                      + Sets the displayName of the table. +

                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + displayName + + : + string +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + table + + : + Table +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + Returns: + + Table +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      @@ -1162,14 +1154,14 @@

                                                                                                                                                                                                      table : - Table + Table

                                                                                                                                                                                                      Returns: - Table + Table
                                                                                                                                                                                                      @@ -1177,52 +1169,51 @@

                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - - - - - -

                                                                                                                                                                                                      - - Sets the name of a table. - -

                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - name - - : - string -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - table - - : - Table -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - Returns: - - Table -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + +
                                                                                                                                                                                                      + + + + + +

                                                                                                                                                                                                      + Sets the name of a table. +

                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + name + + : + string +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + table + + : + Table +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + Returns: + + Table +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      @@ -1258,7 +1249,7 @@

                                                                                                                                                                                                      sheetData : - SheetData + SheetData
                                                                                                                                                                                                      @@ -1266,14 +1257,14 @@

                                                                                                                                                                                                      table : - Table + Table

                                                                                                                                                                                                      Returns: - Dictionary<(int * string), string> + Dictionary<(int * string), string>
                                                                                                                                                                                                      @@ -1281,60 +1272,59 @@

                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - - - - - -

                                                                                                                                                                                                      - - Reads a complete table. Values are stored sparsely in a dictionary, with the key being a row index and column header tuple. - -

                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - sst - - : - Option<SST> -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - sheetData - - : - SheetData -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - table - - : - Table -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - Returns: - - Dictionary<(int * string), string> -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + +
                                                                                                                                                                                                      + + + + + +

                                                                                                                                                                                                      + Reads a complete table. Values are stored sparsely in a dictionary, with the key being a row index and column header tuple. +

                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + sst + + : + Option<SST> +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + sheetData + + : + SheetData +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + table + + : + Table +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + Returns: + + Dictionary<(int * string), string> +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      @@ -1370,7 +1360,7 @@

                                                                                                                                                                                                      sheetData : - SheetData + SheetData
                                                                                                                                                                                                      @@ -1386,14 +1376,14 @@

                                                                                                                                                                                                      area : - StringValue + StringValue

                                                                                                                                                                                                      Returns: - Table option + Table option
                                                                                                                                                                                                      @@ -1401,68 +1391,67 @@

                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - - - - - -

                                                                                                                                                                                                      - - 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. - -

                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - sst - - : - Option<SST> -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - sheetData - - : - SheetData -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - name - - : - string -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - area - - : - StringValue -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - Returns: - - Table option -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + +
                                                                                                                                                                                                      + + + + + +

                                                                                                                                                                                                      + 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. +

                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + sst + + : + Option<SST> +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + sheetData + + : + SheetData +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + name + + : + string +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + area + + : + StringValue +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + Returns: + + Table option +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      @@ -1498,14 +1487,14 @@

                                                                                                                                                                                                      worksheetPart : - WorksheetPart + WorksheetPart

                                                                                                                                                                                                      Returns: - Table option + Table option
                                                                                                                                                                                                      @@ -1513,52 +1502,51 @@

                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - - - - - -

                                                                                                                                                                                                      - - If a table exists, for which the predicate applied to its name returns true, gets it. Else returns None. - -

                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - predicate - - : - string -> bool -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - worksheetPart - - : - WorksheetPart -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - Returns: - - Table option -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + +
                                                                                                                                                                                                      + + + + + +

                                                                                                                                                                                                      + If a table exists, for which the predicate applied to its name returns true, gets it. Else returns None. +

                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + predicate + + : + string -> bool +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + worksheetPart + + : + WorksheetPart +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + Returns: + + Table option +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      @@ -1594,7 +1582,7 @@

                                                                                                                                                                                                      sheetData : - SheetData + SheetData
                                                                                                                                                                                                      @@ -1610,7 +1598,7 @@

                                                                                                                                                                                                      table : - Table + Table
                                                                                                                                                                                                      @@ -1625,68 +1613,67 @@

                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - - - - - -

                                                                                                                                                                                                      - - If a column with the given header exists in the table, returns its values. Else returns None. - -

                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - sst - - : - Option<SST> -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - sheetData - - : - SheetData -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - columnHeader - - : - string -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - table - - : - Table -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - Returns: - - string list option -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + +
                                                                                                                                                                                                      + + + + + +

                                                                                                                                                                                                      + If a column with the given header exists in the table, returns its values. Else returns None. +

                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + sst + + : + Option<SST> +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + sheetData + + : + SheetData +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + columnHeader + + : + string +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + table + + : + Table +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + Returns: + + string list option +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      @@ -1714,14 +1701,14 @@

                                                                                                                                                                                                      worksheetPart : - WorksheetPart + WorksheetPart

                                                                                                                                                                                                      Returns: - Table option + Table option
                                                                                                                                                                                                      @@ -1729,44 +1716,43 @@

                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - - - - - -

                                                                                                                                                                                                      - - If the worksheetPart contains tables, returns the first one. Else returns None. - -

                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - worksheetPart - - : - WorksheetPart -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - Returns: - - Table option -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + +
                                                                                                                                                                                                      + + + + + +

                                                                                                                                                                                                      + If the worksheetPart contains tables, returns the first one. Else returns None. +

                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + worksheetPart + + : + WorksheetPart +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + Returns: + + Table option +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      @@ -1802,7 +1788,7 @@

                                                                                                                                                                                                      sheetData : - SheetData + SheetData
                                                                                                                                                                                                      @@ -1818,7 +1804,7 @@

                                                                                                                                                                                                      table : - Table + Table
                                                                                                                                                                                                      @@ -1833,68 +1819,67 @@

                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - - - - - -

                                                                                                                                                                                                      - - If a column with the given header exists in the table, returns its indexed values. Else returns None. - -

                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - sst - - : - Option<SST> -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - sheetData - - : - SheetData -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - columnHeader - - : - string -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - table - - : - Table -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - Returns: - - (int * string) list option -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + +
                                                                                                                                                                                                      + + + + + +

                                                                                                                                                                                                      + If a column with the given header exists in the table, returns its indexed values. Else returns None. +

                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + sst + + : + Option<SST> +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + sheetData + + : + SheetData +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + columnHeader + + : + string +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + table + + : + Table +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + Returns: + + (int * string) list option +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      @@ -1930,7 +1915,7 @@

                                                                                                                                                                                                      sheetData : - SheetData + SheetData
                                                                                                                                                                                                      @@ -1962,7 +1947,7 @@

                                                                                                                                                                                                      table : - Table + Table
                                                                                                                                                                                                      @@ -1977,84 +1962,83 @@

                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - - - - - -

                                                                                                                                                                                                      - - 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. - -

                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - sst - - : - Option<SST> -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - sheetData - - : - SheetData -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - keyColHeader - - : - string -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - valColHeader - - : - string -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - defaultValue - - : - string -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - table - - : - Table -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - Returns: - - (string * string) list option -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + +
                                                                                                                                                                                                      + + + + + +

                                                                                                                                                                                                      + 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. +

                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + sst + + : + Option<SST> +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + sheetData + + : + SheetData +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + keyColHeader + + : + string +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + valColHeader + + : + string +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + defaultValue + + : + string +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + table + + : + Table +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + Returns: + + (string * string) list option +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      @@ -2082,7 +2066,7 @@

                                                                                                                                                                                                      predicate : - TableColumn -> bool + TableColumn -> bool
                                                                                                                                                                                                      @@ -2090,14 +2074,14 @@

                                                                                                                                                                                                      table : - Table + Table

                                                                                                                                                                                                      Returns: - TableColumn option + TableColumn option
                                                                                                                                                                                                      @@ -2105,52 +2089,51 @@

                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - - - - - -

                                                                                                                                                                                                      - - Returns the tableColumn for which the predicate returns true if it exists. Else returns None. - -

                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - predicate - - : - TableColumn -> bool -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - table - - : - Table -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - Returns: - - TableColumn option -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + +
                                                                                                                                                                                                      + + + + + +

                                                                                                                                                                                                      + Returns the tableColumn for which the predicate returns true if it exists. Else returns None. +

                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + predicate + + : + TableColumn -> bool +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + table + + : + Table +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + Returns: + + TableColumn option +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      @@ -2186,14 +2169,14 @@

                                                                                                                                                                                                      table : - Table + Table

                                                                                                                                                                                                      Returns: - TableColumn option + TableColumn option
                                                                                                                                                                                                      @@ -2201,52 +2184,51 @@

                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - - - - - -

                                                                                                                                                                                                      - - If a tableColumn with the given name exists in the table, returns it. Else returns None. - -

                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - name - - : - string -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - table - - : - Table -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      - - Returns: - - TableColumn option -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      -
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + +
                                                                                                                                                                                                      + + + + + +

                                                                                                                                                                                                      + If a tableColumn with the given name exists in the table, returns it. Else returns None. +

                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + name + + : + string +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + table + + : + Table +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      + + Returns: + + TableColumn option +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      +
                                                                                                                                                                                                      @@ -2261,19 +2243,24 @@

                                                                                                                                                                                                      - - - + + + + +
                                                                                                                                                                                                      +
                                                                                                                                                                                                        +

                                                                                                                                                                                                        Type something to start searching.

                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-net-workbook.html b/reference/fsspreadsheet-net-workbook.html index 34cf8221..f85ff9f5 100644 --- a/reference/fsspreadsheet-net-workbook.html +++ b/reference/fsspreadsheet-net-workbook.html @@ -1,62 +1,50 @@ - - + - - Workbook (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        - +
                                                                                                                                                                                                        -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        - +
                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                        + + +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +

                                                                                                                                                                                                        Workbook Module

                                                                                                                                                                                                        @@ -89,9 +108,7 @@

                                                                                                                                                                                                        - - Functions for manipulating Workbooks. (Unmanaged: changing the sheets does not alter the associated worksheets which store the data) - + Functions for manipulating Workbooks. (Unmanaged: changing the sheets does not alter the associated worksheets which store the data)

                                                                                                                                                                                                        @@ -143,7 +160,7 @@


                                                                                                                                                                                                        Returns: - Workbook + Workbook

                                                                                                                                                                                                        @@ -151,44 +168,43 @@

                                                                                                                                                                                                        -
                                                                                                                                                                                                        - - - - - - -

                                                                                                                                                                                                        - - Creates an empty Workbook. - -

                                                                                                                                                                                                        -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        - - () - - : - unit -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        - - Returns: - - Workbook -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        +
                                                                                                                                                                                                        + +
                                                                                                                                                                                                        + + + + + +

                                                                                                                                                                                                        + Creates an empty Workbook. +

                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        + + () + + : + unit +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        + + Returns: + + Workbook +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        @@ -216,14 +232,14 @@

                                                                                                                                                                                                        workbookPart : - WorkbookPart + WorkbookPart

                                                                                                                                                                                                        Returns: - Workbook + Workbook

                                                                                                                                                                                                        @@ -231,44 +247,43 @@

                                                                                                                                                                                                        -
                                                                                                                                                                                                        - - - - - - -

                                                                                                                                                                                                        - - Gets the Workbook of the WorkbookPart. - -

                                                                                                                                                                                                        -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        - - workbookPart - - : - WorkbookPart -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        - - Returns: - - Workbook -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        +
                                                                                                                                                                                                        + +
                                                                                                                                                                                                        + + + + + +

                                                                                                                                                                                                        + Gets the Workbook of the WorkbookPart. +

                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        + + workbookPart + + : + WorkbookPart +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        + + Returns: + + Workbook +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        @@ -296,14 +311,14 @@

                                                                                                                                                                                                        workbookPart : - WorkbookPart + WorkbookPart

                                                                                                                                                                                                        Returns: - Workbook + Workbook

                                                                                                                                                                                                        @@ -311,44 +326,43 @@

                                                                                                                                                                                                        -
                                                                                                                                                                                                        - - - - - - -

                                                                                                                                                                                                        - - Returns the Workbookpart associated with the existing or a newly created Workbook. - -

                                                                                                                                                                                                        -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        - - workbookPart - - : - WorkbookPart -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        - - Returns: - - Workbook -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        +
                                                                                                                                                                                                        + +
                                                                                                                                                                                                        + + + + + +

                                                                                                                                                                                                        + Returns the Workbookpart associated with the existing or a newly created Workbook. +

                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        + + workbookPart + + : + WorkbookPart +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        + + Returns: + + Workbook +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        @@ -376,14 +390,14 @@

                                                                                                                                                                                                        workbookPart : - WorkbookPart + WorkbookPart

                                                                                                                                                                                                        Returns: - WorkbookPart + WorkbookPart
                                                                                                                                                                                                        @@ -391,44 +405,43 @@

                                                                                                                                                                                                        -
                                                                                                                                                                                                        - - - - - - -

                                                                                                                                                                                                        - - Sets an empty Workbook in the given WorkbookPart. - -

                                                                                                                                                                                                        -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        - - workbookPart - - : - WorkbookPart -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        - - Returns: - - WorkbookPart -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        +
                                                                                                                                                                                                        + +
                                                                                                                                                                                                        + + + + + +

                                                                                                                                                                                                        + Sets an empty Workbook in the given WorkbookPart. +

                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        + + workbookPart + + : + WorkbookPart +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        + + Returns: + + WorkbookPart +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        @@ -456,7 +469,7 @@

                                                                                                                                                                                                        workbook : - Workbook + Workbook
                                                                                                                                                                                                        @@ -464,14 +477,14 @@

                                                                                                                                                                                                        workbookPart : - WorkbookPart + WorkbookPart

                                                                                                                                                                                                        Returns: - WorkbookPart + WorkbookPart
                                                                                                                                                                                                        @@ -479,52 +492,51 @@

                                                                                                                                                                                                        -
                                                                                                                                                                                                        - - - - - - -

                                                                                                                                                                                                        - - Sets the Workbook of the WorkbookPart. - -

                                                                                                                                                                                                        -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        - - workbook - - : - Workbook -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        - - workbookPart - - : - WorkbookPart -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        - - Returns: - - WorkbookPart -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        -
                                                                                                                                                                                                        +
                                                                                                                                                                                                        + +
                                                                                                                                                                                                        + + + + + +

                                                                                                                                                                                                        + Sets the Workbook of the WorkbookPart. +

                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        + + workbook + + : + Workbook +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        + + workbookPart + + : + WorkbookPart +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        + + Returns: + + WorkbookPart +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        +
                                                                                                                                                                                                        @@ -539,19 +551,24 @@

                                                                                                                                                                                                        - - - + + + + +
                                                                                                                                                                                                        +
                                                                                                                                                                                                          +

                                                                                                                                                                                                          Type something to start searching.

                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-net-workbookpart.html b/reference/fsspreadsheet-net-workbookpart.html index 12398df5..466f05bf 100644 --- a/reference/fsspreadsheet-net-workbookpart.html +++ b/reference/fsspreadsheet-net-workbookpart.html @@ -1,62 +1,50 @@ - - + - - WorkbookPart (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - +
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - +
                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                          + + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +

                                                                                                                                                                                                          WorkbookPart Module

                                                                                                                                                                                                          @@ -89,9 +108,7 @@

                                                                                                                                                                                                          - - Functions for working with WorkbookParts. - + Functions for working with WorkbookParts.

                                                                                                                                                                                                          @@ -136,7 +153,7 @@

                                                                                                                                                                                                          worksheetPart : - WorksheetPart + WorksheetPart
                                                                                                                                                                                                          @@ -144,14 +161,14 @@

                                                                                                                                                                                                          workbookPart : - WorkbookPart + WorkbookPart

                                                                                                                                                                                                          Returns: - WorksheetPart + WorksheetPart

                                                                                                                                                                                                          @@ -159,52 +176,51 @@

                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - - - - - -

                                                                                                                                                                                                          - - Add a WorksheetPart to the WorkbookPart. - -

                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - worksheetPart - - : - WorksheetPart -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - workbookPart - - : - WorkbookPart -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - Returns: - - WorksheetPart -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                                          + Add a WorksheetPart to the WorkbookPart. +

                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + worksheetPart + + : + WorksheetPart +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + workbookPart + + : + WorkbookPart +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + Returns: + + WorksheetPart +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          @@ -240,7 +256,7 @@

                                                                                                                                                                                                          data : - SheetData + SheetData
                                                                                                                                                                                                          @@ -248,14 +264,14 @@

                                                                                                                                                                                                          workbookPart : - WorkbookPart + WorkbookPart

                                                                                                                                                                                                          Returns: - WorkbookPart + WorkbookPart

                                                                                                                                                                                                          @@ -263,60 +279,59 @@

                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - - - - - -

                                                                                                                                                                                                          - - Appends a new sheet with the given SheetData to the SpreadsheetDocument. - -

                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - sheetName - - : - string -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - data - - : - SheetData -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - workbookPart - - : - WorkbookPart -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - Returns: - - WorkbookPart -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                                          + Appends a new sheet with the given SheetData to the SpreadsheetDocument. +

                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + sheetName + + : + string +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + data + + : + SheetData +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + workbookPart + + : + WorkbookPart +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + Returns: + + WorkbookPart +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          @@ -352,7 +367,7 @@

                                                                                                                                                                                                          worksheet : - Worksheet + Worksheet
                                                                                                                                                                                                          @@ -360,14 +375,14 @@

                                                                                                                                                                                                          workbookPart : - WorkbookPart + WorkbookPart

                                                                                                                                                                                                          Returns: - WorkbookPart + WorkbookPart

                                                                                                                                                                                                          @@ -375,60 +390,59 @@

                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - - - - - -

                                                                                                                                                                                                          - - Appends a worksheet to the SpreadsheetDocument. - -

                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - sheetName - - : - string -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - worksheet - - : - Worksheet -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - workbookPart - - : - WorkbookPart -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - Returns: - - WorkbookPart -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                                          + Appends a worksheet to the SpreadsheetDocument. +

                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + sheetName + + : + string +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + worksheet + + : + Worksheet +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + workbookPart + + : + WorkbookPart +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + Returns: + + WorkbookPart +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          @@ -456,7 +470,7 @@

                                                                                                                                                                                                          workbookPart : - WorkbookPart + WorkbookPart
                                                                                                                                                                                                          @@ -471,44 +485,43 @@

                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - - - - - -

                                                                                                                                                                                                          - - Returns true if the WorkbookPart contains a SharedStringTablePart. - -

                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - workbookPart - - : - WorkbookPart -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - Returns: - - bool -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                                          + Returns true if the WorkbookPart contains a SharedStringTablePart. +

                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + workbookPart + + : + WorkbookPart +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + Returns: + + bool +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          @@ -536,7 +549,7 @@

                                                                                                                                                                                                          workbookPart : - WorkbookPart + WorkbookPart
                                                                                                                                                                                                          @@ -551,44 +564,43 @@

                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - - - - - -

                                                                                                                                                                                                          - - Returns true if the WorkbookPart contains at least one WorksheetPart. - -

                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - workbookPart - - : - WorkbookPart -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - Returns: - - bool -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                                          + Returns true if the WorkbookPart contains at least one WorksheetPart. +

                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + workbookPart + + : + WorkbookPart +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + Returns: + + bool +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          @@ -616,14 +628,14 @@

                                                                                                                                                                                                          workbookPart : - WorkbookPart + WorkbookPart

                                                                                                                                                                                                          Returns: - SheetData + SheetData
                                                                                                                                                                                                          @@ -631,44 +643,43 @@

                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - - - - - -

                                                                                                                                                                                                          - - Returns the SheetData of the first sheet of the given WorkbookPart. - -

                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - workbookPart - - : - WorkbookPart -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - Returns: - - SheetData -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                                          + Returns the SheetData of the first sheet of the given WorkbookPart. +

                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + workbookPart + + : + WorkbookPart +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + Returns: + + SheetData +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          @@ -696,14 +707,14 @@

                                                                                                                                                                                                          workbookPart : - WorkbookPart + WorkbookPart

                                                                                                                                                                                                          Returns: - SharedStringTablePart + SharedStringTablePart
                                                                                                                                                                                                          @@ -711,44 +722,43 @@

                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - - - - - -

                                                                                                                                                                                                          - - Returns the existing or a newly created SharedStringTablePart associated with the WorkbookPart. - -

                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - workbookPart - - : - WorkbookPart -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - Returns: - - SharedStringTablePart -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                                          + Returns the existing or a newly created SharedStringTablePart associated with the WorkbookPart. +

                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + workbookPart + + : + WorkbookPart +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + Returns: + + SharedStringTablePart +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          @@ -784,14 +794,14 @@

                                                                                                                                                                                                          workbookPart : - WorkbookPart + WorkbookPart

                                                                                                                                                                                                          Returns: - WorksheetPart + WorksheetPart
                                                                                                                                                                                                          @@ -799,52 +809,51 @@

                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - - - - - -

                                                                                                                                                                                                          - - Appends a worksheet to the SpreadsheetDocument. - -

                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - sheetName - - : - string -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - workbookPart - - : - WorkbookPart -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - Returns: - - WorksheetPart -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                                          + Appends a worksheet to the SpreadsheetDocument. +

                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + sheetName + + : + string +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + workbookPart + + : + WorkbookPart +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + Returns: + + WorksheetPart +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          @@ -872,14 +881,14 @@

                                                                                                                                                                                                          workbookPart : - WorkbookPart + WorkbookPart

                                                                                                                                                                                                          Returns: - SharedStringTable + SharedStringTable
                                                                                                                                                                                                          @@ -887,44 +896,43 @@

                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - - - - - -

                                                                                                                                                                                                          - - Returns the SharedStringTable of a WorkbookPart. - -

                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - workbookPart - - : - WorkbookPart -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - Returns: - - SharedStringTable -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                                          + Returns the SharedStringTable of a WorkbookPart. +

                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + workbookPart + + : + WorkbookPart +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + Returns: + + SharedStringTable +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          @@ -952,14 +960,14 @@

                                                                                                                                                                                                          workbookPart : - WorkbookPart + WorkbookPart

                                                                                                                                                                                                          Returns: - SharedStringTablePart + SharedStringTablePart
                                                                                                                                                                                                          @@ -967,44 +975,43 @@

                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - - - - - -

                                                                                                                                                                                                          - - Gets the SharedStringTablePart of a WorkbookPart. - -

                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - workbookPart - - : - WorkbookPart -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - Returns: - - SharedStringTablePart -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                                          + Gets the SharedStringTablePart of a WorkbookPart. +

                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + workbookPart + + : + WorkbookPart +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + Returns: + + SharedStringTablePart +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          @@ -1032,14 +1039,14 @@

                                                                                                                                                                                                          workbookPart : - WorkbookPart + WorkbookPart

                                                                                                                                                                                                          Returns: - IEnumerable<WorksheetPart> + IEnumerable<WorksheetPart>
                                                                                                                                                                                                          @@ -1047,44 +1054,43 @@

                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - - - - - -

                                                                                                                                                                                                          - - Get the WorksheetParts of the WorkbookPart. - -

                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - workbookPart - - : - WorkbookPart -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - Returns: - - IEnumerable<WorksheetPart> -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                                          + Get the WorksheetParts of the WorkbookPart. +

                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + workbookPart + + : + WorkbookPart +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + Returns: + + IEnumerable<WorksheetPart> +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          @@ -1120,14 +1126,14 @@

                                                                                                                                                                                                          workbookPart : - WorkbookPart + WorkbookPart

                                                                                                                                                                                                          Returns: - WorksheetPart + WorksheetPart
                                                                                                                                                                                                          @@ -1135,52 +1141,51 @@

                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - - - - - -

                                                                                                                                                                                                          - - Gets the WorksheetPart of the WorkbookPart with the given ID. - -

                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - id - - : - string -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - workbookPart - - : - WorkbookPart -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - Returns: - - WorksheetPart -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                                          + Gets the WorksheetPart of the WorkbookPart with the given ID. +

                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + id + + : + string +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + workbookPart + + : + WorkbookPart +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + Returns: + + WorksheetPart +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          @@ -1208,7 +1213,7 @@

                                                                                                                                                                                                          worksheetPart : - WorksheetPart + WorksheetPart
                                                                                                                                                                                                          @@ -1216,7 +1221,7 @@

                                                                                                                                                                                                          workbookPart : - WorkbookPart + WorkbookPart
                                                                                                                                                                                                          @@ -1231,52 +1236,51 @@

                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - - - - - -

                                                                                                                                                                                                          - - Gets the ID of the WorksheetPart of the WorkbookPart. - -

                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - worksheetPart - - : - WorksheetPart -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - workbookPart - - : - WorkbookPart -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - Returns: - - string -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                                          + Gets the ID of the WorksheetPart of the WorkbookPart. +

                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + worksheetPart + + : + WorksheetPart +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + workbookPart + + : + WorkbookPart +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + Returns: + + string +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          @@ -1304,14 +1308,14 @@

                                                                                                                                                                                                          workbookPart : - WorkbookPart + WorkbookPart

                                                                                                                                                                                                          Returns: - WorkbookPart + WorkbookPart
                                                                                                                                                                                                          @@ -1319,44 +1323,43 @@

                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - - - - - -

                                                                                                                                                                                                          - - Sets an empty SharedStringTablePart in the given WorkbookPart. - -

                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - workbookPart - - : - WorkbookPart -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - Returns: - - WorkbookPart -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                                          + Sets an empty SharedStringTablePart in the given WorkbookPart. +

                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + workbookPart + + : + WorkbookPart +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + Returns: + + WorkbookPart +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          @@ -1384,14 +1387,14 @@

                                                                                                                                                                                                          workbookPart : - WorkbookPart + WorkbookPart

                                                                                                                                                                                                          Returns: - WorksheetPart + WorksheetPart
                                                                                                                                                                                                          @@ -1399,44 +1402,43 @@

                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - - - - - -

                                                                                                                                                                                                          - - Add an empty WorksheetPart to the WorkbookPart. - -

                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - workbookPart - - : - WorkbookPart -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - Returns: - - WorksheetPart -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                                          + Add an empty WorksheetPart to the WorkbookPart. +

                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + workbookPart + + : + WorkbookPart +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + Returns: + + WorksheetPart +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          @@ -1472,7 +1474,7 @@

                                                                                                                                                                                                          data : - SheetData + SheetData
                                                                                                                                                                                                          @@ -1480,14 +1482,14 @@

                                                                                                                                                                                                          workbookPart : - WorkbookPart + WorkbookPart

                                                                                                                                                                                                          Returns: - WorkbookPart + WorkbookPart
                                                                                                                                                                                                          @@ -1495,60 +1497,59 @@

                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - - - - - -

                                                                                                                                                                                                          - - Replaces the SheetData of the Sheet with the given sheetname. - -

                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - sheetName - - : - string -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - data - - : - SheetData -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - workbookPart - - : - WorkbookPart -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - Returns: - - WorkbookPart -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                                          + Replaces the SheetData of the Sheet with the given sheetname. +

                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + sheetName + + : + string +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + data + + : + SheetData +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + workbookPart + + : + WorkbookPart +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + Returns: + + WorkbookPart +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          @@ -1584,14 +1585,14 @@

                                                                                                                                                                                                          workbookPart : - WorkbookPart + WorkbookPart

                                                                                                                                                                                                          Returns: - WorksheetPart option + WorksheetPart option
                                                                                                                                                                                                          @@ -1599,52 +1600,51 @@

                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - - - - - -

                                                                                                                                                                                                          - - If the WorkbookPart contains the WorksheetPart with the given ID, returns it. Else returns None. - -

                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - id - - : - string -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - workbookPart - - : - WorkbookPart -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          - - Returns: - - WorksheetPart option -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          -
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + +
                                                                                                                                                                                                          + + + + + +

                                                                                                                                                                                                          + If the WorkbookPart contains the WorksheetPart with the given ID, returns it. Else returns None. +

                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + id + + : + string +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + workbookPart + + : + WorkbookPart +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          + + Returns: + + WorksheetPart option +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          +
                                                                                                                                                                                                          @@ -1659,19 +1659,24 @@

                                                                                                                                                                                                          - - - + + + + +
                                                                                                                                                                                                          +
                                                                                                                                                                                                            +

                                                                                                                                                                                                            Type something to start searching.

                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-net-worksheet-comments.html b/reference/fsspreadsheet-net-worksheet-comments.html index f8cf9061..7cfde8e9 100644 --- a/reference/fsspreadsheet-net-worksheet-comments.html +++ b/reference/fsspreadsheet-net-worksheet-comments.html @@ -1,62 +1,50 @@ - - + - - Comments (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            - +
                                                                                                                                                                                                            -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            - +
                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                            + + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +

                                                                                                                                                                                                            Comments Module

                                                                                                                                                                                                            @@ -95,9 +114,7 @@

                                                                                                                                                                                                            - - Functions for working with Comments. - + Functions for working with Comments.

                                                                                                                                                                                                            @@ -142,14 +159,14 @@

                                                                                                                                                                                                            worksheetCommentsPart : - WorksheetCommentsPart + WorksheetCommentsPart

                                                                                                                                                                                                            Returns: - Comments + Comments

                                                                                                                                                                                                            @@ -157,44 +174,43 @@

                                                                                                                                                                                                            -
                                                                                                                                                                                                            - - - - - - -

                                                                                                                                                                                                            - - Returns the comments of the WorksheetCommentsPart. - -

                                                                                                                                                                                                            -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            - - worksheetCommentsPart - - : - WorksheetCommentsPart -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            - - Returns: - - Comments -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            + + + + + +

                                                                                                                                                                                                            + Returns the comments of the WorksheetCommentsPart. +

                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + worksheetCommentsPart + + : + WorksheetCommentsPart +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + Returns: + + Comments +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            @@ -222,14 +238,14 @@

                                                                                                                                                                                                            comments : - Comments + Comments

                                                                                                                                                                                                            Returns: - seq<string> + string seq

                                                                                                                                                                                                            @@ -237,45 +253,49 @@

                                                                                                                                                                                                            -
                                                                                                                                                                                                            - - - - - - -

                                                                                                                                                                                                            - Returns a sequence of author names from the Comments. +

                                                                                                                                                                                                            + +
                                                                                                                                                                                                            + + + + + +

                                                                                                                                                                                                            + Returns a sequence of author names from the Comments. +

                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +

                                                                                                                                                                                                            + Author names might be encrypted in the pattern of

                                                                                                                                                                                                            tc={...}
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +

                                                                                                                                                                                                            -
                                                                                                                                                                                                            -

                                                                                                                                                                                                            - Author names might be encrypted in the pattern of

                                                                                                                                                                                                            tc={...}
                                                                                                                                                                                                            -

                                                                                                                                                                                                            -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            - - comments - - : - Comments -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            - - Returns: - - seq<string> -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + comments + + : + Comments +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + Returns: + + string seq +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + @@ -303,14 +323,14 @@

                                                                                                                                                                                                            commentList : - CommentList + CommentList

                                                                                                                                                                                                            Returns: - seq<string> + string seq

                                                                                                                                                                                                            @@ -318,44 +338,43 @@

                                                                                                                                                                                                            -
                                                                                                                                                                                                            - - - - - - -

                                                                                                                                                                                                            - - Returns all Comments and Notes as strings of a CommentList. - -

                                                                                                                                                                                                            -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            - - commentList - - : - CommentList -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            - - Returns: - - seq<string> -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            + + + + + +

                                                                                                                                                                                                            + Returns all Comments and Notes as strings of a CommentList. +

                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + commentList + + : + CommentList +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + Returns: + + string seq +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            @@ -383,14 +402,14 @@

                                                                                                                                                                                                            comments : - Comments + Comments

                                                                                                                                                                                                            Returns: - CommentList + CommentList
                                                                                                                                                                                                            @@ -398,44 +417,43 @@

                                                                                                                                                                                                            -
                                                                                                                                                                                                            - - - - - - -

                                                                                                                                                                                                            - - Returns the CommentList of the given Comments. - -

                                                                                                                                                                                                            -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            - - comments - - : - Comments -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            - - Returns: - - CommentList -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            + + + + + +

                                                                                                                                                                                                            + Returns the CommentList of the given Comments. +

                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + comments + + : + Comments +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + Returns: + + CommentList +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            @@ -463,14 +481,14 @@

                                                                                                                                                                                                            comments : - Comments + Comments

                                                                                                                                                                                                            Returns: - seq<string * string * string> + (string * string * string) seq
                                                                                                                                                                                                            @@ -478,44 +496,43 @@

                                                                                                                                                                                                            -
                                                                                                                                                                                                            - - - - - - -

                                                                                                                                                                                                            - - Returns a triple of Comments consisting of the author, the comment text written, and the cell reference (A1-style). - -

                                                                                                                                                                                                            -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            - - comments - - : - Comments -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            - - Returns: - - seq<string * string * string> -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            + + + + + +

                                                                                                                                                                                                            + Returns a triple of Comments consisting of the author, the comment text written, and the cell reference (A1-style). +

                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + comments + + : + Comments +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + Returns: + + (string * string * string) seq +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            @@ -543,14 +560,14 @@

                                                                                                                                                                                                            comments : - Comments + Comments

                                                                                                                                                                                                            Returns: - seq<string * string * string> + (string * string * string) seq
                                                                                                                                                                                                            @@ -558,44 +575,43 @@

                                                                                                                                                                                                            -
                                                                                                                                                                                                            - - - - - - -

                                                                                                                                                                                                            - - Returns a triple of Notes consisting of the author, the note text written, and the cell reference (A1-style). - -

                                                                                                                                                                                                            -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            - - comments - - : - Comments -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            - - Returns: - - seq<string * string * string> -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            -
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + +
                                                                                                                                                                                                            + + + + + +

                                                                                                                                                                                                            + Returns a triple of Notes consisting of the author, the note text written, and the cell reference (A1-style). +

                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + comments + + : + Comments +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            + + Returns: + + (string * string * string) seq +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            +
                                                                                                                                                                                                            @@ -610,19 +626,24 @@

                                                                                                                                                                                                            - - - + + + + +
                                                                                                                                                                                                            +
                                                                                                                                                                                                              +

                                                                                                                                                                                                              Type something to start searching.

                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-net-worksheet-worksheetcommentspart.html b/reference/fsspreadsheet-net-worksheet-worksheetcommentspart.html index e223c36b..86b4eae6 100644 --- a/reference/fsspreadsheet-net-worksheet-worksheetcommentspart.html +++ b/reference/fsspreadsheet-net-worksheet-worksheetcommentspart.html @@ -1,62 +1,50 @@ - - + - - WorksheetCommentsPart (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                                                                              -
                                                                                                                                                                                                              - +
                                                                                                                                                                                                              -
                                                                                                                                                                                                              -
                                                                                                                                                                                                              -
                                                                                                                                                                                                              - +
                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                              + + +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +

                                                                                                                                                                                                              WorksheetCommentsPart Module

                                                                                                                                                                                                              @@ -95,9 +114,7 @@

                                                                                                                                                                                                              - - Functions for extracting / working with WorksheetCommentsParts. - + Functions for extracting / working with WorksheetCommentsParts.

                                                                                                                                                                                                              @@ -142,14 +159,14 @@

                                                                                                                                                                                                              worksheetPart : - WorksheetPart + WorksheetPart

                                                                                                                                                                                                              Returns: - WorksheetCommentsPart + WorksheetCommentsPart

                                                                                                                                                                                                              @@ -157,44 +174,43 @@

                                                                                                                                                                                                              -
                                                                                                                                                                                                              - - - - - - -

                                                                                                                                                                                                              - - Returns the WorksheetCommentsPart associated with a WorksheetPart. - -

                                                                                                                                                                                                              -
                                                                                                                                                                                                              -
                                                                                                                                                                                                              -
                                                                                                                                                                                                              - - worksheetPart - - : - WorksheetPart -
                                                                                                                                                                                                              -
                                                                                                                                                                                                              -
                                                                                                                                                                                                              -
                                                                                                                                                                                                              -
                                                                                                                                                                                                              - - Returns: - - WorksheetCommentsPart -
                                                                                                                                                                                                              -
                                                                                                                                                                                                              -
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + +
                                                                                                                                                                                                              + + + + + +

                                                                                                                                                                                                              + Returns the WorksheetCommentsPart associated with a WorksheetPart. +

                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + + worksheetPart + + : + WorksheetPart +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + + Returns: + + WorksheetCommentsPart +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              @@ -222,14 +238,14 @@

                                                                                                                                                                                                              worksheetCommentsPart : - WorksheetCommentsPart + WorksheetCommentsPart

                                                                                                                                                                                                              Returns: - Comments + Comments

                                                                                                                                                                                                              @@ -237,44 +253,43 @@

                                                                                                                                                                                                              -
                                                                                                                                                                                                              - - - - - - -

                                                                                                                                                                                                              - - Returns the comments of the WorksheetCommentsPart. - -

                                                                                                                                                                                                              -
                                                                                                                                                                                                              -
                                                                                                                                                                                                              -
                                                                                                                                                                                                              - - worksheetCommentsPart - - : - WorksheetCommentsPart -
                                                                                                                                                                                                              -
                                                                                                                                                                                                              -
                                                                                                                                                                                                              -
                                                                                                                                                                                                              -
                                                                                                                                                                                                              - - Returns: - - Comments -
                                                                                                                                                                                                              -
                                                                                                                                                                                                              -
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + +
                                                                                                                                                                                                              + + + + + +

                                                                                                                                                                                                              + Returns the comments of the WorksheetCommentsPart. +

                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + + worksheetCommentsPart + + : + WorksheetCommentsPart +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              + + Returns: + + Comments +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              +
                                                                                                                                                                                                              @@ -289,19 +304,24 @@

                                                                                                                                                                                                              -
                                                                                                                                                                                                              - - + + + + +
                                                                                                                                                                                                              +
                                                                                                                                                                                                                +

                                                                                                                                                                                                                Type something to start searching.

                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-net-worksheet-worksheetpart.html b/reference/fsspreadsheet-net-worksheet-worksheetpart.html index 72574819..fb64b8e6 100644 --- a/reference/fsspreadsheet-net-worksheet-worksheetpart.html +++ b/reference/fsspreadsheet-net-worksheet-worksheetpart.html @@ -1,62 +1,50 @@ - - + - - WorksheetPart (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                - +
                                                                                                                                                                                                                -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                - +
                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +

                                                                                                                                                                                                                WorksheetPart Module

                                                                                                                                                                                                                @@ -95,9 +114,7 @@

                                                                                                                                                                                                                - - Functions for extracting / working with WorksheetParts. - + Functions for extracting / working with WorksheetParts.

                                                                                                                                                                                                                @@ -150,14 +167,14 @@

                                                                                                                                                                                                                workbookPart : - WorkbookPart + WorkbookPart

                                                                                                                                                                                                                Returns: - WorksheetPart + WorksheetPart

                                                                                                                                                                                                                @@ -165,52 +182,51 @@

                                                                                                                                                                                                                -
                                                                                                                                                                                                                - - - - - - -

                                                                                                                                                                                                                - - Returns the WorksheetPart matching the given sheetID. - -

                                                                                                                                                                                                                -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                - - sheetID - - : - string -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                - - workbookPart - - : - WorkbookPart -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                - - Returns: - - WorksheetPart -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + +
                                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                                + Returns the WorksheetPart matching the given sheetID. +

                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + + sheetID + + : + string +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + + workbookPart + + : + WorkbookPart +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + + Returns: + + WorksheetPart +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                @@ -238,14 +254,14 @@

                                                                                                                                                                                                                worksheetPart : - WorksheetPart + WorksheetPart

                                                                                                                                                                                                                Returns: - SheetData + SheetData

                                                                                                                                                                                                                @@ -253,44 +269,43 @@

                                                                                                                                                                                                                -
                                                                                                                                                                                                                - - - - - - -

                                                                                                                                                                                                                - - Returns the SheetData associated with the WorksheetPart. - -

                                                                                                                                                                                                                -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                - - worksheetPart - - : - WorksheetPart -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                - - Returns: - - SheetData -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + +
                                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                                + Returns the SheetData associated with the WorksheetPart. +

                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + + worksheetPart + + : + WorksheetPart +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + + Returns: + + SheetData +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                @@ -318,14 +333,14 @@

                                                                                                                                                                                                                worksheetPart : - WorksheetPart + WorksheetPart

                                                                                                                                                                                                                Returns: - seq<Table> + Table seq

                                                                                                                                                                                                                @@ -333,42 +348,43 @@

                                                                                                                                                                                                                -
                                                                                                                                                                                                                - - - - - - -

                                                                                                                                                                                                                - Returns the Tables associated with a WorksheetPart -

                                                                                                                                                                                                                -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                - - worksheetPart - - : - WorksheetPart -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                - - Returns: - - seq<Table> -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + +
                                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                                + Returns the Tables associated with a WorksheetPart +

                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + + worksheetPart + + : + WorksheetPart +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + + Returns: + + Table seq +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                @@ -396,14 +412,14 @@

                                                                                                                                                                                                                worksheetPart : - WorksheetPart + WorksheetPart

                                                                                                                                                                                                                Returns: - WorksheetCommentsPart + WorksheetCommentsPart
                                                                                                                                                                                                                @@ -411,44 +427,43 @@

                                                                                                                                                                                                                -
                                                                                                                                                                                                                - - - - - - -

                                                                                                                                                                                                                - - Returns the WorksheetCommentsPart associated with a WorksheetPart. - -

                                                                                                                                                                                                                -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                - - worksheetPart - - : - WorksheetPart -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                - - Returns: - - WorksheetCommentsPart -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                -
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + +
                                                                                                                                                                                                                + + + + + +

                                                                                                                                                                                                                + Returns the WorksheetCommentsPart associated with a WorksheetPart. +

                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + + worksheetPart + + : + WorksheetPart +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                + + Returns: + + WorksheetCommentsPart +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                @@ -463,19 +478,24 @@

                                                                                                                                                                                                                - - - + + + + +
                                                                                                                                                                                                                +
                                                                                                                                                                                                                  +

                                                                                                                                                                                                                  Type something to start searching.

                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-net-worksheet.html b/reference/fsspreadsheet-net-worksheet.html index 802efc3c..98aae38f 100644 --- a/reference/fsspreadsheet-net-worksheet.html +++ b/reference/fsspreadsheet-net-worksheet.html @@ -1,62 +1,50 @@ - - + - - Worksheet (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  - +
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  - +
                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +

                                                                                                                                                                                                                  Worksheet Module

                                                                                                                                                                                                                  @@ -89,10 +108,8 @@

                                                                                                                                                                                                                  - - Stores data of the sheet and the index of the sheet and + Stores data of the sheet and the index of the sheet and functions for working with the worksheetpart. (Unmanaged: changing a worksheet does not alter the sheet which links the worksheet to the excel workbook) -

                                                                                                                                                                                                                  @@ -125,21 +142,16 @@

                                                                                                                                                                                                                  - - +

                                                                                                                                                                                                                  - - Functions for working with Comments. - + Functions for working with Comments.

                                                                                                                                                                                                                  @@ -157,21 +169,16 @@

                                                                                                                                                                                                                  - - +

                                                                                                                                                                                                                  - - Functions for extracting / working with WorksheetCommentsParts. - + Functions for extracting / working with WorksheetCommentsParts.

                                                                                                                                                                                                                  @@ -189,21 +196,16 @@

                                                                                                                                                                                                                  - - +

                                                                                                                                                                                                                  - - Functions for extracting / working with WorksheetParts. - + Functions for extracting / working with WorksheetParts.

                                                                                                                                                                                                                  @@ -252,7 +254,7 @@

                                                                                                                                                                                                                  sheetData : - SheetData + SheetData
                                                                                                                                                                                                                  @@ -260,14 +262,14 @@

                                                                                                                                                                                                                  worksheet : - Worksheet + Worksheet

                                                                                                                                                                                                                  Returns: - Worksheet + Worksheet

                                                                                                                                                                                                                  @@ -275,52 +277,51 @@

                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  - - - - - - -

                                                                                                                                                                                                                  - - Associates a SheetData with the Worksheet. - -

                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  - - sheetData - - : - SheetData -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  - - worksheet - - : - Worksheet -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  - - Returns: - - Worksheet -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                  + + + + + +

                                                                                                                                                                                                                  + Associates a SheetData with the Worksheet. +

                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + + sheetData + + : + SheetData +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + + worksheet + + : + Worksheet +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + + Returns: + + Worksheet +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  @@ -355,7 +356,7 @@


                                                                                                                                                                                                                  Returns: - Worksheet + Worksheet

                                                                                                                                                                                                                  @@ -363,44 +364,43 @@

                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  - - - - - - -

                                                                                                                                                                                                                  - - Empty Worksheet - -

                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  - - () - - : - unit -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  - - Returns: - - Worksheet -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                  + + + + + +

                                                                                                                                                                                                                  + Empty Worksheet +

                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + + () + + : + unit +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + + Returns: + + Worksheet +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  @@ -428,14 +428,14 @@

                                                                                                                                                                                                                  worksheetPart : - WorksheetPart + WorksheetPart

                                                                                                                                                                                                                  Returns: - Worksheet + Worksheet

                                                                                                                                                                                                                  @@ -443,30 +443,13 @@

                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  - - - - - - -

                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  worksheetPart : - WorksheetPart + WorksheetPart
                                                                                                                                                                                                                  @@ -475,7 +458,7 @@

                                                                                                                                                                                                                  Returns: - Worksheet + Worksheet
                                                                                                                                                                                                                  @@ -506,14 +489,14 @@

                                                                                                                                                                                                                  worksheetPart : - WorksheetPart + WorksheetPart

                                                                                                                                                                                                                  Returns: - Worksheet + Worksheet
                                                                                                                                                                                                                  @@ -521,44 +504,43 @@

                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  - - - - - - -

                                                                                                                                                                                                                  - - Returns the existing or a newly created Worksheet associated with the WorksheetPart. - -

                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  - - worksheetPart - - : - WorksheetPart -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  - - Returns: - - Worksheet -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                  + + + + + +

                                                                                                                                                                                                                  + Returns the existing or a newly created Worksheet associated with the WorksheetPart. +

                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + + worksheetPart + + : + WorksheetPart +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + + Returns: + + Worksheet +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  @@ -586,14 +568,14 @@

                                                                                                                                                                                                                  worksheet : - Worksheet + Worksheet

                                                                                                                                                                                                                  Returns: - SheetData + SheetData
                                                                                                                                                                                                                  @@ -601,44 +583,43 @@

                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  - - - - - - -

                                                                                                                                                                                                                  - - Returns the sheetdata associated with the Worksheet. - -

                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  - - worksheet - - : - Worksheet -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  - - Returns: - - SheetData -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                  + + + + + +

                                                                                                                                                                                                                  + Returns the sheetdata associated with the Worksheet. +

                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + + worksheet + + : + Worksheet +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + + Returns: + + SheetData +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  @@ -666,7 +647,7 @@

                                                                                                                                                                                                                  worksheet : - Worksheet + Worksheet
                                                                                                                                                                                                                  @@ -681,44 +662,43 @@

                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  - - - - - - -

                                                                                                                                                                                                                  - - Returns true, if the Worksheet contains SheetData. - -

                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  - - worksheet - - : - Worksheet -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  - - Returns: - - bool -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                  + + + + + +

                                                                                                                                                                                                                  + Returns true, if the Worksheet contains SheetData. +

                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + + worksheet + + : + Worksheet +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + + Returns: + + bool +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  @@ -746,7 +726,7 @@

                                                                                                                                                                                                                  worksheetPart : - WorksheetPart + WorksheetPart - The WorksheetPart to associate the Worksheet with. @@ -755,7 +735,7 @@


                                                                                                                                                                                                                  Returns: - WorksheetPart + WorksheetPart
                                                                                                                                                                                                                  @@ -763,46 +743,47 @@

                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  - - - - - - -

                                                                                                                                                                                                                  - Associates an empty Worksheet with the WorksheetPart. -

                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  - - worksheetPart - - : - WorksheetPart -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -

                                                                                                                                                                                                                  - The WorksheetPart to associate the Worksheet with. -

                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  - - Returns: - - WorksheetPart -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                  + + + + + +

                                                                                                                                                                                                                  + Associates an empty Worksheet with the WorksheetPart. +

                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + + worksheetPart + + : + WorksheetPart +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +

                                                                                                                                                                                                                  + The WorksheetPart to associate the Worksheet with. +

                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + + Returns: + + WorksheetPart +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  @@ -830,14 +811,14 @@

                                                                                                                                                                                                                  sheetData : - SheetData + SheetData

                                                                                                                                                                                                                  Returns: - Worksheet + Worksheet
                                                                                                                                                                                                                  @@ -845,44 +826,43 @@

                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  - - - - - - -

                                                                                                                                                                                                                  - - Creates a Worksheet containing the given SheetData. - -

                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  - - sheetData - - : - SheetData -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  - - Returns: - - Worksheet -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                  + + + + + +

                                                                                                                                                                                                                  + Creates a Worksheet containing the given SheetData. +

                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + + sheetData + + : + SheetData +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + + Returns: + + Worksheet +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  @@ -910,7 +890,7 @@

                                                                                                                                                                                                                  sheetData : - SheetData + SheetData
                                                                                                                                                                                                                  @@ -918,14 +898,14 @@

                                                                                                                                                                                                                  worksheet : - Worksheet + Worksheet

                                                                                                                                                                                                                  Returns: - Worksheet + Worksheet
                                                                                                                                                                                                                  @@ -933,52 +913,51 @@

                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  - - - - - - -

                                                                                                                                                                                                                  - - Sets the SheetData of a Worksheet. - -

                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  - - sheetData - - : - SheetData -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  - - worksheet - - : - Worksheet -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  - - Returns: - - Worksheet -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                  + + + + + +

                                                                                                                                                                                                                  + Sets the SheetData of a Worksheet. +

                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + + sheetData + + : + SheetData +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + + worksheet + + : + Worksheet +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + + Returns: + + Worksheet +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  @@ -1006,7 +985,7 @@

                                                                                                                                                                                                                  worksheet : - Worksheet + Worksheet
                                                                                                                                                                                                                  @@ -1014,14 +993,14 @@

                                                                                                                                                                                                                  worksheetPart : - WorksheetPart + WorksheetPart

                                                                                                                                                                                                                  Returns: - WorksheetPart + WorksheetPart
                                                                                                                                                                                                                  @@ -1029,52 +1008,51 @@

                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  - - - - - - -

                                                                                                                                                                                                                  - - Sets the given Worksheet with the WorksheetPart. - -

                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  - - worksheet - - : - Worksheet -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  - - worksheetPart - - : - WorksheetPart -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  - - Returns: - - WorksheetPart -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                  + + + + + +

                                                                                                                                                                                                                  + Sets the given Worksheet with the WorksheetPart. +

                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + + worksheet + + : + Worksheet +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + + worksheetPart + + : + WorksheetPart +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  + + Returns: + + WorksheetPart +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                  @@ -1089,19 +1067,24 @@

                                                                                                                                                                                                                  - - - + + + + +
                                                                                                                                                                                                                  +
                                                                                                                                                                                                                    +

                                                                                                                                                                                                                    Type something to start searching.

                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-net-writer.html b/reference/fsspreadsheet-net-writer.html index d7138e62..63d75ceb 100644 --- a/reference/fsspreadsheet-net-writer.html +++ b/reference/fsspreadsheet-net-writer.html @@ -1,62 +1,50 @@ - - + - - Writer (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    - +
                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    - +
                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +

                                                                                                                                                                                                                    Writer Type

                                                                                                                                                                                                                    @@ -124,7 +143,7 @@

                                                                                                                                                                                                                    - +

                                                                                                                                                                                                                    @@ -133,7 +152,7 @@

                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    Full Usage: Writer.toRowsJsonFile (path, ?spaces) @@ -169,23 +188,6 @@

                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    - - - - - - -

                                                                                                                                                                                                                    - -

                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    @@ -218,7 +220,7 @@

                                                                                                                                                                                                                    - +

                                                                                                                                                                                                                    @@ -227,7 +229,7 @@

                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    Full Usage: Writer.toRowsJsonString (workbook, ?spaces) @@ -263,23 +265,6 @@

                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    - - - - - - -

                                                                                                                                                                                                                    - -

                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    @@ -312,7 +297,7 @@

                                                                                                                                                                                                                    - +

                                                                                                                                                                                                                    @@ -321,7 +306,7 @@

                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    Full Usage: Writer.toXlsxBytes workbook @@ -349,50 +334,49 @@

                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    - - - - - - -

                                                                                                                                                                                                                    - - Returns an FsWorkbook in the form of a byte array. - -

                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    - - workbook - - : - FsWorkbook -
                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    - - Returns: - - byte[] -
                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                    + + + + + +

                                                                                                                                                                                                                    + Returns an FsWorkbook in the form of a byte array. +

                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    + + workbook + + : + FsWorkbook +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    + + Returns: + + byte[] +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    - +

                                                                                                                                                                                                                    @@ -401,7 +385,7 @@

                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    Full Usage: Writer.toXlsxFile (path, workbook) @@ -432,49 +416,48 @@

                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    - - - - - - -

                                                                                                                                                                                                                    - - Writes an FsWorkbook into a binary file at the given path. - -

                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    - - path - - : - string -
                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    - - workbook - - : - FsWorkbook -
                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                    + + + + + +

                                                                                                                                                                                                                    + Writes an FsWorkbook into a binary file at the given path. +

                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    + + path + + : + string +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    + + workbook + + : + FsWorkbook +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    - +

                                                                                                                                                                                                                    @@ -483,7 +466,7 @@

                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    Full Usage: Writer.toXlsxStream (stream, workbook) @@ -496,7 +479,7 @@

                                                                                                                                                                                                                    stream : - MemoryStream + MemoryStream
                                                                                                                                                                                                                    @@ -514,62 +497,66 @@

                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    - - - - - - -

                                                                                                                                                                                                                    - - Writes an FsWorkbook into a given MemoryStream. - -

                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    - - stream - - : - MemoryStream -
                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    - - workbook - - : - FsWorkbook -
                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                    + + + + + +

                                                                                                                                                                                                                    + Writes an FsWorkbook into a given MemoryStream. +

                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    + + stream + + : + MemoryStream +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    + + workbook + + : + FsWorkbook +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                    -

                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    -

                                                                                                                                                                                                                    +

                                                                                                                                                                                                                    + + + +
                                                                                                                                                                                                                    +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      Type something to start searching.

                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-net-ziparchivereader-cellformat.html b/reference/fsspreadsheet-net-ziparchivereader-cellformat.html index 872b17f5..c35df003 100644 --- a/reference/fsspreadsheet-net-ziparchivereader-cellformat.html +++ b/reference/fsspreadsheet-net-ziparchivereader-cellformat.html @@ -1,62 +1,50 @@ - - + - - CellFormat (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                                                                                      -
                                                                                                                                                                                                                      - +
                                                                                                                                                                                                                      -
                                                                                                                                                                                                                      -
                                                                                                                                                                                                                      -
                                                                                                                                                                                                                      - +
                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      CellFormat Type

                                                                                                                                                                                                                      @@ -97,15 +116,15 @@

                                                                                                                                                                                                                      All Interfaces: - IEquatable<CellFormat> + IEquatable<CellFormat> , - IStructuralEquatable + IStructuralEquatable , - IComparable<CellFormat> + IComparable<CellFormat> , - IComparable + IComparable , - IStructuralComparable + IStructuralComparable
                                                                                                                                                                                                                      @@ -138,7 +157,7 @@

                                                                                                                                                                                                                      - +

                                                                                                                                                                                                                      @@ -147,7 +166,7 @@

                                                                                                                                                                                                                      -
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Full Usage: ApllyNumberFormat @@ -163,15 +182,6 @@

                                                                                                                                                                                                                      -
                                                                                                                                                                                                                      - - - - -

                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                      -
                                                                                                                                                                                                                      @@ -186,7 +196,7 @@

                                                                                                                                                                                                                      - +

                                                                                                                                                                                                                      @@ -195,7 +205,7 @@

                                                                                                                                                                                                                      -
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Full Usage: NumberFormatId @@ -211,15 +221,6 @@

                                                                                                                                                                                                                      -
                                                                                                                                                                                                                      - - - - -

                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                      -
                                                                                                                                                                                                                      @@ -256,7 +257,7 @@

                                                                                                                                                                                                                      - +

                                                                                                                                                                                                                      @@ -265,7 +266,7 @@

                                                                                                                                                                                                                      -
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                      Full Usage: CellFormat.isDateTime styles cf @@ -301,23 +302,6 @@

                                                                                                                                                                                                                      -
                                                                                                                                                                                                                      - - - - - - -

                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                      -
                                                                                                                                                                                                                      @@ -351,19 +335,24 @@

                                                                                                                                                                                                                      -

                                                                                                                                                                                                                      -

                                                                                                                                                                                                                      -

                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                      +
                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        Type something to start searching.

                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-net-ziparchivereader-dtype.html b/reference/fsspreadsheet-net-ziparchivereader-dtype.html index e88092e8..6f255f40 100644 --- a/reference/fsspreadsheet-net-ziparchivereader-dtype.html +++ b/reference/fsspreadsheet-net-ziparchivereader-dtype.html @@ -1,62 +1,50 @@ - - + - - DType (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                                                                                        -
                                                                                                                                                                                                                        - +
                                                                                                                                                                                                                        -
                                                                                                                                                                                                                        -
                                                                                                                                                                                                                        -
                                                                                                                                                                                                                        - +
                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                        +

                                                                                                                                                                                                                        DType Module

                                                                                                                                                                                                                        @@ -143,23 +162,6 @@

                                                                                                                                                                                                                        -
                                                                                                                                                                                                                        - - - - - - -

                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                        -
                                                                                                                                                                                                                        @@ -199,23 +201,6 @@

                                                                                                                                                                                                                        -
                                                                                                                                                                                                                        - - - - - - -

                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                        -
                                                                                                                                                                                                                        @@ -255,23 +240,6 @@

                                                                                                                                                                                                                        -
                                                                                                                                                                                                                        - - - - - - -

                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                        -
                                                                                                                                                                                                                        @@ -311,23 +279,6 @@

                                                                                                                                                                                                                        -
                                                                                                                                                                                                                        - - - - - - -

                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                        -
                                                                                                                                                                                                                        @@ -367,23 +318,6 @@

                                                                                                                                                                                                                        -
                                                                                                                                                                                                                        - - - - - - -

                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                        -
                                                                                                                                                                                                                        @@ -423,23 +357,6 @@

                                                                                                                                                                                                                        -
                                                                                                                                                                                                                        - - - - - - -

                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                        -
                                                                                                                                                                                                                        @@ -479,23 +396,6 @@

                                                                                                                                                                                                                        -
                                                                                                                                                                                                                        - - - - - - -

                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                        -
                                                                                                                                                                                                                        @@ -519,19 +419,24 @@

                                                                                                                                                                                                                        -
                                                                                                                                                                                                                        -
                                                                                                                                                                                                                        -
                                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                                        +
                                                                                                                                                                                                                          +

                                                                                                                                                                                                                          Type something to start searching.

                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-net-ziparchivereader-fsworkbook.html b/reference/fsspreadsheet-net-ziparchivereader-fsworkbook.html index 6063badc..2bddf7e1 100644 --- a/reference/fsspreadsheet-net-ziparchivereader-fsworkbook.html +++ b/reference/fsspreadsheet-net-ziparchivereader-fsworkbook.html @@ -1,62 +1,50 @@ - - + - - FsWorkbook (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                                                                                          -
                                                                                                                                                                                                                          - +
                                                                                                                                                                                                                          -
                                                                                                                                                                                                                          -
                                                                                                                                                                                                                          -
                                                                                                                                                                                                                          - +
                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                          +

                                                                                                                                                                                                                          FsWorkbook Module

                                                                                                                                                                                                                          @@ -155,23 +174,6 @@

                                                                                                                                                                                                                          -
                                                                                                                                                                                                                          - - - - - - -

                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                          -
                                                                                                                                                                                                                          @@ -233,23 +235,6 @@

                                                                                                                                                                                                                          -
                                                                                                                                                                                                                          - - - - - - -

                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                          -
                                                                                                                                                                                                                          @@ -296,7 +281,7 @@

                                                                                                                                                                                                                          stream : - Stream + Stream
                                                                                                                                                                                                                          @@ -311,30 +296,13 @@

                                                                                                                                                                                                                          -
                                                                                                                                                                                                                          - - - - - - -

                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                          -
                                                                                                                                                                                                                          stream : - Stream + Stream
                                                                                                                                                                                                                          @@ -374,7 +342,7 @@

                                                                                                                                                                                                                          wb : - ZipArchive + ZipArchive
                                                                                                                                                                                                                          @@ -389,30 +357,13 @@

                                                                                                                                                                                                                          -
                                                                                                                                                                                                                          - - - - - - -

                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                          -
                                                                                                                                                                                                                          wb : - ZipArchive + ZipArchive
                                                                                                                                                                                                                          @@ -439,19 +390,24 @@

                                                                                                                                                                                                                          -
                                                                                                                                                                                                                          -
                                                                                                                                                                                                                          -
                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                          +
                                                                                                                                                                                                                            +

                                                                                                                                                                                                                            Type something to start searching.

                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-net-ziparchivereader-numberformat.html b/reference/fsspreadsheet-net-ziparchivereader-numberformat.html index c78302e0..6bfd1924 100644 --- a/reference/fsspreadsheet-net-ziparchivereader-numberformat.html +++ b/reference/fsspreadsheet-net-ziparchivereader-numberformat.html @@ -1,62 +1,50 @@ - - + - - NumberFormat (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                                                                                            -
                                                                                                                                                                                                                            - +
                                                                                                                                                                                                                            -
                                                                                                                                                                                                                            -
                                                                                                                                                                                                                            -
                                                                                                                                                                                                                            - +
                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            +

                                                                                                                                                                                                                            NumberFormat Type

                                                                                                                                                                                                                            @@ -97,15 +116,15 @@

                                                                                                                                                                                                                            All Interfaces: - IEquatable<NumberFormat> + IEquatable<NumberFormat> , - IStructuralEquatable + IStructuralEquatable , - IComparable<NumberFormat> + IComparable<NumberFormat> , - IComparable + IComparable , - IStructuralComparable + IStructuralComparable
                                                                                                                                                                                                                            @@ -138,7 +157,7 @@

                                                                                                                                                                                                                            - +

                                                                                                                                                                                                                            @@ -147,7 +166,7 @@

                                                                                                                                                                                                                            -
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            Full Usage: FormatCode @@ -163,15 +182,6 @@

                                                                                                                                                                                                                            -
                                                                                                                                                                                                                            - - - - -

                                                                                                                                                                                                                            - -

                                                                                                                                                                                                                            -
                                                                                                                                                                                                                            @@ -186,7 +196,7 @@

                                                                                                                                                                                                                            - +

                                                                                                                                                                                                                            @@ -195,7 +205,7 @@

                                                                                                                                                                                                                            -
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            Full Usage: Id @@ -211,15 +221,6 @@

                                                                                                                                                                                                                            -
                                                                                                                                                                                                                            - - - - -

                                                                                                                                                                                                                            - -

                                                                                                                                                                                                                            -
                                                                                                                                                                                                                            @@ -256,7 +257,7 @@

                                                                                                                                                                                                                            - +

                                                                                                                                                                                                                            @@ -265,7 +266,7 @@

                                                                                                                                                                                                                            -
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                            Full Usage: NumberFormat.isDateTime numberFormat @@ -293,23 +294,6 @@

                                                                                                                                                                                                                            -
                                                                                                                                                                                                                            - - - - - - -

                                                                                                                                                                                                                            - -

                                                                                                                                                                                                                            -
                                                                                                                                                                                                                            @@ -335,19 +319,24 @@

                                                                                                                                                                                                                            -

                                                                                                                                                                                                                            -

                                                                                                                                                                                                                            -

                                                                                                                                                                                                                            +

                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                            +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              Type something to start searching.

                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-net-ziparchivereader-relationship.html b/reference/fsspreadsheet-net-ziparchivereader-relationship.html index e6bb1ab4..5f3472d1 100644 --- a/reference/fsspreadsheet-net-ziparchivereader-relationship.html +++ b/reference/fsspreadsheet-net-ziparchivereader-relationship.html @@ -1,62 +1,50 @@ - - + - - Relationship (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                                                                                              -
                                                                                                                                                                                                                              - +
                                                                                                                                                                                                                              -
                                                                                                                                                                                                                              -
                                                                                                                                                                                                                              -
                                                                                                                                                                                                                              - +
                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              Relationship Type

                                                                                                                                                                                                                              @@ -97,15 +116,15 @@

                                                                                                                                                                                                                              All Interfaces: - IEquatable<Relationship> + IEquatable<Relationship> , - IStructuralEquatable + IStructuralEquatable , - IComparable<Relationship> + IComparable<Relationship> , - IComparable + IComparable , - IStructuralComparable + IStructuralComparable
                                                                                                                                                                                                                              @@ -138,7 +157,7 @@

                                                                                                                                                                                                                              - +

                                                                                                                                                                                                                              @@ -147,7 +166,7 @@

                                                                                                                                                                                                                              -
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Full Usage: Id @@ -163,15 +182,6 @@

                                                                                                                                                                                                                              -
                                                                                                                                                                                                                              - - - - -

                                                                                                                                                                                                                              - -

                                                                                                                                                                                                                              -
                                                                                                                                                                                                                              @@ -186,7 +196,7 @@

                                                                                                                                                                                                                              - +

                                                                                                                                                                                                                              @@ -195,7 +205,7 @@

                                                                                                                                                                                                                              -
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Full Usage: Target @@ -211,15 +221,6 @@

                                                                                                                                                                                                                              -
                                                                                                                                                                                                                              - - - - -

                                                                                                                                                                                                                              - -

                                                                                                                                                                                                                              -
                                                                                                                                                                                                                              @@ -234,7 +235,7 @@

                                                                                                                                                                                                                              - +

                                                                                                                                                                                                                              @@ -243,7 +244,7 @@

                                                                                                                                                                                                                              -
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                              Full Usage: Type @@ -259,15 +260,6 @@

                                                                                                                                                                                                                              -
                                                                                                                                                                                                                              - - - - -

                                                                                                                                                                                                                              - -

                                                                                                                                                                                                                              -
                                                                                                                                                                                                                              @@ -287,19 +279,24 @@

                                                                                                                                                                                                                              -
                                                                                                                                                                                                                              -

                                                                                                                                                                                                                              -

                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                Type something to start searching.

                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-net-ziparchivereader-relationships.html b/reference/fsspreadsheet-net-ziparchivereader-relationships.html index 135cd49a..10bb5a7a 100644 --- a/reference/fsspreadsheet-net-ziparchivereader-relationships.html +++ b/reference/fsspreadsheet-net-ziparchivereader-relationships.html @@ -1,62 +1,50 @@ - - + - - Relationships (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                - +
                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                - +
                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                Relationships Type

                                                                                                                                                                                                                                @@ -101,19 +120,21 @@

                                                                                                                                                                                                                                All Interfaces: - IReadOnlyDictionary<string, Relationship> + IReadOnlyDictionary<string, Relationship> + , + IReadOnlyCollection<KeyValuePair<string, Relationship>> , - IReadOnlyCollection<KeyValuePair<string, Relationship>> + IStructuralEquatable , - IComparable + IComparable , - IDictionary<string, Relationship> + IDictionary<string, Relationship> , - ICollection<KeyValuePair<string, Relationship>> + ICollection<KeyValuePair<string, Relationship>> , - IEnumerable<KeyValuePair<string, Relationship>> + IEnumerable<KeyValuePair<string, Relationship>> , - IEnumerable + IEnumerable
                                                                                                                                                                                                                                @@ -149,7 +170,7 @@

                                                                                                                                                                                                                                - +

                                                                                                                                                                                                                                @@ -158,7 +179,7 @@

                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Full Usage: this.Count @@ -174,23 +195,6 @@

                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                - - - - - - -

                                                                                                                                                                                                                                - -

                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                @@ -205,7 +209,7 @@

                                                                                                                                                                                                                                - +

                                                                                                                                                                                                                                @@ -214,7 +218,7 @@

                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Full Usage: this.IsEmpty @@ -230,23 +234,6 @@

                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                - - - - - - -

                                                                                                                                                                                                                                - -

                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                @@ -261,7 +248,7 @@

                                                                                                                                                                                                                                - +

                                                                                                                                                                                                                                @@ -270,7 +257,7 @@

                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Full Usage: this[key] @@ -298,23 +285,6 @@

                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                - - - - - - -

                                                                                                                                                                                                                                - -

                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                @@ -339,7 +309,7 @@

                                                                                                                                                                                                                                - +

                                                                                                                                                                                                                                @@ -348,7 +318,7 @@

                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Full Usage: this.Keys @@ -356,7 +326,7 @@


                                                                                                                                                                                                                                Returns: - ICollection<string> + ICollection<string>

                                                                                                                                                                                                                                @@ -364,29 +334,12 @@

                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                - - - - - - -

                                                                                                                                                                                                                                - -

                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                Returns: - ICollection<string> + ICollection<string>
                                                                                                                                                                                                                                @@ -395,7 +348,7 @@

                                                                                                                                                                                                                                - +

                                                                                                                                                                                                                                @@ -404,7 +357,7 @@

                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                Full Usage: this.Values @@ -412,7 +365,7 @@


                                                                                                                                                                                                                                Returns: - ICollection<Relationship> + ICollection<Relationship>

                                                                                                                                                                                                                                @@ -420,29 +373,12 @@

                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                - - - - - - -

                                                                                                                                                                                                                                - -

                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                Returns: - ICollection<Relationship> + ICollection<Relationship>
                                                                                                                                                                                                                                @@ -453,19 +389,24 @@

                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  Type something to start searching.

                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-net-ziparchivereader-sharedstrings.html b/reference/fsspreadsheet-net-ziparchivereader-sharedstrings.html index 088a13bf..8c2d9239 100644 --- a/reference/fsspreadsheet-net-ziparchivereader-sharedstrings.html +++ b/reference/fsspreadsheet-net-ziparchivereader-sharedstrings.html @@ -1,62 +1,50 @@ - - + - - SharedStrings (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                  - +
                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                  - +
                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  SharedStrings Type

                                                                                                                                                                                                                                  @@ -97,27 +116,27 @@

                                                                                                                                                                                                                                  Base Type: - Array + Array
                                                                                                                                                                                                                                  All Interfaces: - IList + IList , - ICollection + ICollection , - IStructuralComparable + IStructuralComparable , - IStructuralEquatable + IStructuralEquatable , - ICloneable + ICloneable , - IList<string> + IList<string> , - ICollection<string> + ICollection<string> , - IEnumerable<string> + IEnumerable<string> , - IEnumerable + IEnumerable
                                                                                                                                                                                                                                  @@ -128,19 +147,24 @@

                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                    Type something to start searching.

                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-net-ziparchivereader-styles.html b/reference/fsspreadsheet-net-ziparchivereader-styles.html index 231e9d20..09c1c0f1 100644 --- a/reference/fsspreadsheet-net-ziparchivereader-styles.html +++ b/reference/fsspreadsheet-net-ziparchivereader-styles.html @@ -1,62 +1,50 @@ - - + - - Styles (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                    - +
                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                    - +
                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                    Styles Type

                                                                                                                                                                                                                                    @@ -97,15 +116,15 @@

                                                                                                                                                                                                                                    All Interfaces: - IEquatable<Styles> + IEquatable<Styles> , - IStructuralEquatable + IStructuralEquatable , - IComparable<Styles> + IComparable<Styles> , - IComparable + IComparable , - IStructuralComparable + IStructuralComparable
                                                                                                                                                                                                                                    @@ -138,7 +157,7 @@

                                                                                                                                                                                                                                    - +

                                                                                                                                                                                                                                    @@ -147,7 +166,7 @@

                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    Full Usage: CellFormats @@ -163,15 +182,6 @@

                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                    - - - - -

                                                                                                                                                                                                                                    - -

                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                    @@ -186,7 +196,7 @@

                                                                                                                                                                                                                                    - +

                                                                                                                                                                                                                                    @@ -195,7 +205,7 @@

                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                    Full Usage: NumberFormats @@ -211,15 +221,6 @@

                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                    - - - - -

                                                                                                                                                                                                                                    - -

                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                    @@ -239,19 +240,24 @@

                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                    + + + +
                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                      Type something to start searching.

                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-net-ziparchivereader-workbook.html b/reference/fsspreadsheet-net-ziparchivereader-workbook.html index b856fa69..d394b8e8 100644 --- a/reference/fsspreadsheet-net-ziparchivereader-workbook.html +++ b/reference/fsspreadsheet-net-ziparchivereader-workbook.html @@ -1,62 +1,50 @@ - - + - - WorkBook (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                      - +
                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                      - +
                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                      WorkBook Type

                                                                                                                                                                                                                                      @@ -93,7 +112,7 @@

                                                                                                                                                                                                                                      Abbreviation For: - ZipArchive + ZipArchive
                                                                                                                                                                                                                                      Base Type: @@ -101,7 +120,7 @@

                                                                                                                                                                                                                                      All Interfaces: - IDisposable + IDisposable
                                                                                                                                                                                                                                      @@ -137,7 +156,43 @@

                                                                                                                                                                                                                                      - + +

                                                                                                                                                                                                                                      + + + this.Comment + + +

                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      + Full Usage: + this.Comment +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                      + + +

                                                                                                                                                                                                                                      + +

                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                      @@ -146,7 +201,7 @@

                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      Full Usage: this.Entries @@ -154,7 +209,7 @@


                                                                                                                                                                                                                                      Returns: - ReadOnlyCollection<ZipArchiveEntry> + ReadOnlyCollection<ZipArchiveEntry>

                                                                                                                                                                                                                                      @@ -162,25 +217,12 @@

                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                      - - -

                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                      Returns: - ReadOnlyCollection<ZipArchiveEntry> + ReadOnlyCollection<ZipArchiveEntry>
                                                                                                                                                                                                                                      @@ -189,7 +231,7 @@

                                                                                                                                                                                                                                      - +

                                                                                                                                                                                                                                      @@ -198,7 +240,7 @@

                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      Full Usage: this.Mode @@ -206,7 +248,7 @@


                                                                                                                                                                                                                                      Returns: - ZipArchiveMode + ZipArchiveMode

                                                                                                                                                                                                                                      @@ -214,25 +256,12 @@

                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                      - - -

                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                      Returns: - ZipArchiveMode + ZipArchiveMode
                                                                                                                                                                                                                                      @@ -243,19 +272,24 @@

                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                        Type something to start searching.

                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-net-ziparchivereader-xmlreader.html b/reference/fsspreadsheet-net-ziparchivereader-xmlreader.html index f09f2005..e6ce4a90 100644 --- a/reference/fsspreadsheet-net-ziparchivereader-xmlreader.html +++ b/reference/fsspreadsheet-net-ziparchivereader-xmlreader.html @@ -1,62 +1,50 @@ - - + - - XmlReader (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                        - +
                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                        - +
                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                        XmlReader Module

                                                                                                                                                                                                                                        @@ -140,7 +159,7 @@

                                                                                                                                                                                                                                        reader : - XmlReader + XmlReader
                                                                                                                                                                                                                                        @@ -163,30 +182,13 @@

                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                        - - - - - - -

                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                        reader : - XmlReader + XmlReader
                                                                                                                                                                                                                                        @@ -221,19 +223,24 @@

                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                          Type something to start searching.

                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-net-ziparchivereader.html b/reference/fsspreadsheet-net-ziparchivereader.html index e7b265ea..9c2e0e2e 100644 --- a/reference/fsspreadsheet-net-ziparchivereader.html +++ b/reference/fsspreadsheet-net-ziparchivereader.html @@ -1,62 +1,50 @@ - - + - - ZipArchiveReader (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          - +
                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          - +
                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                          ZipArchiveReader Module

                                                                                                                                                                                                                                          @@ -122,16 +141,13 @@

                                                                                                                                                                                                                                          - - +

                                                                                                                                                                                                                                          @@ -152,16 +168,13 @@

                                                                                                                                                                                                                                          - - +

                                                                                                                                                                                                                                          @@ -182,16 +195,13 @@

                                                                                                                                                                                                                                          - - +

                                                                                                                                                                                                                                          @@ -212,16 +222,13 @@

                                                                                                                                                                                                                                          - - +

                                                                                                                                                                                                                                          @@ -242,16 +249,13 @@

                                                                                                                                                                                                                                          - - +

                                                                                                                                                                                                                                          @@ -272,16 +276,13 @@

                                                                                                                                                                                                                                          - - +

                                                                                                                                                                                                                                          @@ -302,16 +303,13 @@

                                                                                                                                                                                                                                          - - +

                                                                                                                                                                                                                                          @@ -332,16 +330,13 @@

                                                                                                                                                                                                                                          - - +

                                                                                                                                                                                                                                          @@ -362,16 +357,13 @@

                                                                                                                                                                                                                                          - - +

                                                                                                                                                                                                                                          @@ -392,16 +384,13 @@

                                                                                                                                                                                                                                          - - +

                                                                                                                                                                                                                                          @@ -471,23 +460,6 @@

                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          - - - - - - -

                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          @@ -537,23 +509,6 @@

                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          - - - - - - -

                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          @@ -593,23 +548,6 @@

                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          - - - - - - -

                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          @@ -661,23 +599,6 @@

                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          - - - - - - -

                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          @@ -739,23 +660,6 @@

                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          - - - - - - -

                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          @@ -809,7 +713,7 @@


                                                                                                                                                                                                                                          Returns: - FsTable[] + FsTable array

                                                                                                                                                                                                                                          @@ -817,23 +721,6 @@

                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          - - - - - - -

                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          @@ -849,7 +736,7 @@

                                                                                                                                                                                                                                          Returns: - FsTable[] + FsTable array

                                                                                                                                                                                                                                          @@ -895,23 +782,6 @@

                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          - - - - - - -

                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          @@ -981,23 +851,6 @@

                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          - - - - - - -

                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          @@ -1107,23 +960,6 @@

                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          - - - - - - -

                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          @@ -1210,7 +1046,7 @@

                                                                                                                                                                                                                                          relationships : - ZipArchiveEntry + ZipArchiveEntry
                                                                                                                                                                                                                                          @@ -1225,30 +1061,13 @@

                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          - - - - - - -

                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          relationships : - ZipArchiveEntry + ZipArchiveEntry
                                                                                                                                                                                                                                          @@ -1288,7 +1107,7 @@

                                                                                                                                                                                                                                          sheet : - ZipArchiveEntry + ZipArchiveEntry
                                                                                                                                                                                                                                          @@ -1303,30 +1122,13 @@

                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          - - - - - - -

                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          sheet : - ZipArchiveEntry + ZipArchiveEntry
                                                                                                                                                                                                                                          @@ -1366,7 +1168,7 @@

                                                                                                                                                                                                                                          wb : - ZipArchive + ZipArchive
                                                                                                                                                                                                                                          @@ -1381,30 +1183,13 @@

                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          - - - - - - -

                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          wb : - ZipArchive + ZipArchive
                                                                                                                                                                                                                                          @@ -1468,7 +1253,7 @@

                                                                                                                                                                                                                                          sheet : - ZipArchiveEntry + ZipArchiveEntry
                                                                                                                                                                                                                                          @@ -1491,23 +1276,6 @@

                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          - - - - - - -

                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          @@ -1538,7 +1306,7 @@

                                                                                                                                                                                                                                          sheet : - ZipArchiveEntry + ZipArchiveEntry

                                                                                                                                                                                                                                          @@ -1573,19 +1341,24 @@

                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                          + + + + +
                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            Type something to start searching.

                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-net.html b/reference/fsspreadsheet-net.html index f0fe0e1c..dacbecaf 100644 --- a/reference/fsspreadsheet-net.html +++ b/reference/fsspreadsheet-net.html @@ -1,62 +1,50 @@ - - + - - FsSpreadsheet.Net - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            - +
                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                            - +
                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            FsSpreadsheet.Net Namespace

                                                                                                                                                                                                                                            @@ -101,21 +120,16 @@

                                                                                                                                                                                                                                            - - +

                                                                                                                                                                                                                                            - - Functions for creating and manipulating Cells. - + Functions for creating and manipulating Cells.

                                                                                                                                                                                                                                            @@ -133,21 +147,16 @@

                                                                                                                                                                                                                                            - - +

                                                                                                                                                                                                                                            - - Functions for working with CellData. - + Functions for working with CellData.

                                                                                                                                                                                                                                            @@ -165,21 +174,16 @@

                                                                                                                                                                                                                                            - - +

                                                                                                                                                                                                                                            - - Classes that extend the core FsSpreadsheet library with IO functionalities. - + Classes that extend the core FsSpreadsheet library with IO functionalities.

                                                                                                                                                                                                                                            @@ -197,16 +201,13 @@

                                                                                                                                                                                                                                            - - +

                                                                                                                                                                                                                                            @@ -227,21 +228,16 @@

                                                                                                                                                                                                                                            - - +

                                                                                                                                                                                                                                            - - Functions for working with rows (unmanaged: spans and cell references do not get automatically updated). - + Functions for working with rows (unmanaged: spans and cell references do not get automatically updated).

                                                                                                                                                                                                                                            @@ -259,21 +255,16 @@

                                                                                                                                                                                                                                            - - +

                                                                                                                                                                                                                                            - - Functions for working with SharedStringTables. - + Functions for working with SharedStringTables.

                                                                                                                                                                                                                                            @@ -291,21 +282,16 @@

                                                                                                                                                                                                                                            - - +

                                                                                                                                                                                                                                            - - 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) - + 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)

                                                                                                                                                                                                                                            @@ -323,21 +309,16 @@

                                                                                                                                                                                                                                            - - +

                                                                                                                                                                                                                                            - - Functions for working with SheetData. (Unmanaged: Row indices and cell references do not automatically get updated) - + Functions for working with SheetData. (Unmanaged: Row indices and cell references do not automatically get updated)

                                                                                                                                                                                                                                            @@ -355,21 +336,16 @@

                                                                                                                                                                                                                                            - - +

                                                                                                                                                                                                                                            - - Functions for working the spreadsheet document. - + Functions for working the spreadsheet document.

                                                                                                                                                                                                                                            @@ -387,16 +363,13 @@

                                                                                                                                                                                                                                            - - +

                                                                                                                                                                                                                                            @@ -417,16 +390,13 @@

                                                                                                                                                                                                                                            - - +

                                                                                                                                                                                                                                            @@ -447,26 +417,21 @@

                                                                                                                                                                                                                                            - - +

                                                                                                                                                                                                                                            - - Functions for working with tables. + Functions for working with tables. The table object itself just stores the name, the headers and the area in which the table lies. The values are stored in the sheetData object associated with the same worksheet as the table. Therefore, in order to work with tables, one should retrieve both the sheetData and the table. The value retrieval functions ask for both. -

                                                                                                                                                                                                                                            @@ -484,21 +449,16 @@

                                                                                                                                                                                                                                            - - +

                                                                                                                                                                                                                                            - - Functions for manipulating Workbooks. (Unmanaged: changing the sheets does not alter the associated worksheets which store the data) - + Functions for manipulating Workbooks. (Unmanaged: changing the sheets does not alter the associated worksheets which store the data)

                                                                                                                                                                                                                                            @@ -516,21 +476,16 @@

                                                                                                                                                                                                                                            - - +

                                                                                                                                                                                                                                            - - Functions for working with WorkbookParts. - + Functions for working with WorkbookParts.

                                                                                                                                                                                                                                            @@ -548,22 +503,17 @@

                                                                                                                                                                                                                                            - - +

                                                                                                                                                                                                                                            - - Stores data of the sheet and the index of the sheet and + Stores data of the sheet and the index of the sheet and functions for working with the worksheetpart. (Unmanaged: changing a worksheet does not alter the sheet which links the worksheet to the excel workbook) -

                                                                                                                                                                                                                                            @@ -581,16 +531,13 @@

                                                                                                                                                                                                                                            - - +

                                                                                                                                                                                                                                            @@ -611,16 +558,13 @@

                                                                                                                                                                                                                                            - - +

                                                                                                                                                                                                                                            @@ -631,19 +575,24 @@

                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                              Type something to start searching.

                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-py-fsspreadsheet.html b/reference/fsspreadsheet-py-fsspreadsheet.html index e1c6817c..629dcc77 100644 --- a/reference/fsspreadsheet-py-fsspreadsheet.html +++ b/reference/fsspreadsheet-py-fsspreadsheet.html @@ -1,62 +1,50 @@ - - + - - FsSpreadsheet (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              - +
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              - +
                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                              FsSpreadsheet Module

                                                                                                                                                                                                                                              @@ -158,19 +177,6 @@

                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              - - -

                                                                                                                                                                                                                                              - -

                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                              Extended Type: FsWorkbook @@ -252,19 +258,6 @@

                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              - - -

                                                                                                                                                                                                                                              - -

                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                              Extended Type: FsWorkbook @@ -338,19 +331,6 @@

                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              - - -

                                                                                                                                                                                                                                              - -

                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                              Extended Type: FsWorkbook @@ -411,19 +391,6 @@

                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              - - -

                                                                                                                                                                                                                                              - -

                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                              Extended Type: FsWorkbook @@ -480,19 +447,6 @@

                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              - - -

                                                                                                                                                                                                                                              - -

                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                              Extended Type: FsWorkbook @@ -558,19 +512,6 @@

                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              - - -

                                                                                                                                                                                                                                              - -

                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                              Extended Type: FsWorkbook @@ -636,19 +577,6 @@

                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              - - -

                                                                                                                                                                                                                                              - -

                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                              Extended Type: FsWorkbook @@ -714,19 +642,6 @@

                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              - - -

                                                                                                                                                                                                                                              - -

                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                              Extended Type: FsWorkbook @@ -777,7 +692,7 @@

                                                                                                                                                                                                                                              stream : - Stream + Stream
                                                                                                                                                                                                                                              @@ -792,19 +707,6 @@

                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              - - -

                                                                                                                                                                                                                                              - -

                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                              Extended Type: FsWorkbook @@ -815,7 +717,7 @@

                                                                                                                                                                                                                                              stream : - Stream + Stream
                                                                                                                                                                                                                                              @@ -886,19 +788,6 @@

                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              - - -

                                                                                                                                                                                                                                              - -

                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                              Extended Type: FsWorkbook @@ -996,19 +885,6 @@

                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              - - -

                                                                                                                                                                                                                                              - -

                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                              Extended Type: FsWorkbook @@ -1090,19 +966,6 @@

                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              - - -

                                                                                                                                                                                                                                              - -

                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                              Extended Type: FsWorkbook @@ -1171,19 +1034,6 @@

                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              - - -

                                                                                                                                                                                                                                              - -

                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                              Extended Type: FsWorkbook @@ -1219,19 +1069,24 @@

                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                Type something to start searching.

                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-py-json.html b/reference/fsspreadsheet-py-json.html index 2741bcc9..190f9ae3 100644 --- a/reference/fsspreadsheet-py-json.html +++ b/reference/fsspreadsheet-py-json.html @@ -1,62 +1,50 @@ - - + - - Json (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                - +
                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                - +
                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                Json Type

                                                                                                                                                                                                                                                @@ -93,10 +112,8 @@

                                                                                                                                                                                                                                                - - This does currently not correctly work if you want to use this from js + This does currently not correctly work if you want to use this from js https://github.com/fable-compiler/Fable/issues/3498 -

                                                                                                                                                                                                                                                @@ -127,7 +144,7 @@

                                                                                                                                                                                                                                                - +

                                                                                                                                                                                                                                                @@ -136,7 +153,7 @@

                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                Full Usage: Json.fromColumnsJsonString json @@ -164,19 +181,6 @@

                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                - - -

                                                                                                                                                                                                                                                - -

                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                @@ -201,7 +205,7 @@

                                                                                                                                                                                                                                                - +

                                                                                                                                                                                                                                                @@ -210,7 +214,7 @@

                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                Full Usage: Json.fromRowsJsonString json @@ -238,19 +242,6 @@

                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                - - -

                                                                                                                                                                                                                                                - -

                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                @@ -275,7 +266,7 @@

                                                                                                                                                                                                                                                - +

                                                                                                                                                                                                                                                @@ -284,7 +275,7 @@

                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                Full Usage: Json.toColumnsJsonString (wb, ?spaces, ?noNumbering) @@ -328,19 +319,6 @@

                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                - - -

                                                                                                                                                                                                                                                - -

                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                @@ -381,7 +359,7 @@

                                                                                                                                                                                                                                                - +

                                                                                                                                                                                                                                                @@ -390,7 +368,7 @@

                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                Full Usage: Json.toRowsJsonString (wb, ?spaces, ?noNumbering) @@ -434,19 +412,6 @@

                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                - - -

                                                                                                                                                                                                                                                - -

                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                @@ -487,7 +452,7 @@

                                                                                                                                                                                                                                                - +

                                                                                                                                                                                                                                                @@ -496,7 +461,7 @@

                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                Full Usage: Json.tryFromColumnsJsonString json @@ -524,19 +489,6 @@

                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                - - -

                                                                                                                                                                                                                                                - -

                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                @@ -561,7 +513,7 @@

                                                                                                                                                                                                                                                - +

                                                                                                                                                                                                                                                @@ -570,7 +522,7 @@

                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                Full Usage: Json.tryFromRowsJsonString json @@ -598,19 +550,6 @@

                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                - - -

                                                                                                                                                                                                                                                - -

                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                @@ -636,19 +575,24 @@

                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                  Type something to start searching.

                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-py-pycell-datetime.html b/reference/fsspreadsheet-py-pycell-datetime.html index 767a6c32..b7f238fb 100644 --- a/reference/fsspreadsheet-py-pycell-datetime.html +++ b/reference/fsspreadsheet-py-pycell-datetime.html @@ -1,62 +1,50 @@ - - + - - datetime (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  - +
                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  - +
                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                  datetime Type

                                                                                                                                                                                                                                                  @@ -133,7 +152,7 @@

                                                                                                                                                                                                                                                  - +

                                                                                                                                                                                                                                                  @@ -142,7 +161,7 @@

                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  Full Usage: this.decoy () @@ -158,12 +177,10 @@

                                                                                                                                                                                                                                                  @@ -176,19 +193,24 @@

                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    Type something to start searching.

                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-py-pycell-datetimestatic.html b/reference/fsspreadsheet-py-pycell-datetimestatic.html index f763e955..8ceb425e 100644 --- a/reference/fsspreadsheet-py-pycell-datetimestatic.html +++ b/reference/fsspreadsheet-py-pycell-datetimestatic.html @@ -1,62 +1,50 @@ - - + - - DateTimeStatic (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    - +
                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    - +
                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    DateTimeStatic Type

                                                                                                                                                                                                                                                    @@ -133,7 +152,7 @@

                                                                                                                                                                                                                                                    - +

                                                                                                                                                                                                                                                    @@ -142,7 +161,7 @@

                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                    Full Usage: this.fromTimeStamp timestamp @@ -173,19 +192,6 @@

                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    - - -

                                                                                                                                                                                                                                                    - -

                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    @@ -212,19 +218,24 @@

                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    + + + + +
                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                      Type something to start searching.

                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-py-pycell.html b/reference/fsspreadsheet-py-pycell.html index 2318e080..9c2b2f4a 100644 --- a/reference/fsspreadsheet-py-pycell.html +++ b/reference/fsspreadsheet-py-pycell.html @@ -1,62 +1,50 @@ - - + - - PyCell (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      - +
                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      - +
                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                      PyCell Module

                                                                                                                                                                                                                                                      @@ -122,12 +141,10 @@

                                                                                                                                                                                                                                                      @@ -148,12 +165,10 @@

                                                                                                                                                                                                                                                      @@ -208,19 +223,6 @@

                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      - - -

                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      @@ -272,19 +274,6 @@

                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      - - -

                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      @@ -355,7 +344,7 @@

                                                                                                                                                                                                                                                      pyCell : - Cell + Cell
                                                                                                                                                                                                                                                      @@ -370,19 +359,6 @@

                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      - - -

                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      @@ -413,7 +389,7 @@

                                                                                                                                                                                                                                                      pyCell : - Cell + Cell

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

                                                                                                                                                                                                                                                      dt : - DateTime + DateTime
                                                                                                                                                                                                                                                      @@ -468,26 +444,13 @@

                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      - - -

                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      dt : - DateTime + DateTime
                                                                                                                                                                                                                                                      @@ -514,19 +477,24 @@

                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                        Type something to start searching.

                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-py-pycelltype.html b/reference/fsspreadsheet-py-pycelltype.html index b4a08822..6137b326 100644 --- a/reference/fsspreadsheet-py-pycelltype.html +++ b/reference/fsspreadsheet-py-pycelltype.html @@ -1,62 +1,50 @@ - - + - - PyCellType (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        - +
                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        - +
                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                        PyCellType Module

                                                                                                                                                                                                                                                        @@ -141,7 +160,7 @@


                                                                                                                                                                                                                                                        Returns: - CellType + CellType

                                                                                                                                                                                                                                                        @@ -149,19 +168,6 @@

                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        - - -

                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        @@ -177,7 +183,7 @@

                                                                                                                                                                                                                                                        Returns: - CellType + CellType

                                                                                                                                                                                                                                                        @@ -208,7 +214,7 @@

                                                                                                                                                                                                                                                        t : - CellType + CellType
                                                                                                                                                                                                                                                        @@ -223,26 +229,13 @@

                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        - - -

                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        t : - CellType + CellType
                                                                                                                                                                                                                                                        @@ -269,19 +262,24 @@

                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                          Type something to start searching.

                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-py-pytable-tablestyle.html b/reference/fsspreadsheet-py-pytable-tablestyle.html index 99bcb653..e98632fd 100644 --- a/reference/fsspreadsheet-py-pytable-tablestyle.html +++ b/reference/fsspreadsheet-py-pytable-tablestyle.html @@ -1,62 +1,50 @@ - - + - - tablestyle (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                          - +
                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                          - +
                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                          tablestyle Type

                                                                                                                                                                                                                                                          @@ -133,7 +152,7 @@

                                                                                                                                                                                                                                                          - +

                                                                                                                                                                                                                                                          @@ -142,7 +161,7 @@

                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          Full Usage: this.name () @@ -161,19 +180,6 @@

                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                          - - -

                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                          @@ -188,7 +194,7 @@

                                                                                                                                                                                                                                                          - +

                                                                                                                                                                                                                                                          @@ -197,7 +203,7 @@

                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          Full Usage: this.showColumnStripes () @@ -216,19 +222,6 @@

                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                          - - -

                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                          @@ -243,7 +236,7 @@

                                                                                                                                                                                                                                                          - +

                                                                                                                                                                                                                                                          @@ -252,7 +245,7 @@

                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          Full Usage: this.showFirstColumn () @@ -271,19 +264,6 @@

                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                          - - -

                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                          @@ -298,7 +278,7 @@

                                                                                                                                                                                                                                                          - +

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

                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          Full Usage: this.showLastColumn () @@ -326,19 +306,6 @@

                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                          - - -

                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                          @@ -353,7 +320,7 @@

                                                                                                                                                                                                                                                          - +

                                                                                                                                                                                                                                                          @@ -362,7 +329,7 @@

                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                          Full Usage: this.showRowStripes () @@ -381,19 +348,6 @@

                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                          - - -

                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                          @@ -410,19 +364,24 @@

                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                          + + + +
                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                            Type something to start searching.

                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                            + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-py-pytable-tablestylestatic.html b/reference/fsspreadsheet-py-pytable-tablestylestatic.html index 9d5002a8..3c0f799d 100644 --- a/reference/fsspreadsheet-py-pytable-tablestylestatic.html +++ b/reference/fsspreadsheet-py-pytable-tablestylestatic.html @@ -1,62 +1,50 @@ - - + - - TableStyleStatic (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                            - +
                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                            - +
                                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                            TableStyleStatic Type

                                                                                                                                                                                                                                                            @@ -133,7 +152,7 @@

                                                                                                                                                                                                                                                            - +

                                                                                                                                                                                                                                                            @@ -142,7 +161,7 @@

                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                            Full Usage: this.create (name, showFirstColumn, showLastColumn, showRowStripes, showColumnStripes) @@ -205,19 +224,6 @@

                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                            - - -

                                                                                                                                                                                                                                                            - -

                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                            @@ -276,19 +282,24 @@

                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                              Type something to start searching.

                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-py-pytable.html b/reference/fsspreadsheet-py-pytable.html index 2dd3fcfc..175f00b2 100644 --- a/reference/fsspreadsheet-py-pytable.html +++ b/reference/fsspreadsheet-py-pytable.html @@ -1,62 +1,50 @@ - - + - - PyTable (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              - +
                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              - +
                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                              PyTable Module

                                                                                                                                                                                                                                                              @@ -122,12 +141,10 @@

                                                                                                                                                                                                                                                              @@ -148,12 +165,10 @@

                                                                                                                                                                                                                                                              @@ -208,19 +223,6 @@

                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              - - -

                                                                                                                                                                                                                                                              - -

                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              @@ -272,19 +274,6 @@

                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              - - -

                                                                                                                                                                                                                                                              - -

                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              @@ -338,7 +327,7 @@


                                                                                                                                                                                                                                                              Returns: - Table + Table

                                                                                                                                                                                                                                                              @@ -346,19 +335,6 @@

                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              - - -

                                                                                                                                                                                                                                                              - -

                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              @@ -374,7 +350,7 @@

                                                                                                                                                                                                                                                              Returns: - Table + Table

                                                                                                                                                                                                                                                              @@ -405,7 +381,7 @@

                                                                                                                                                                                                                                                              table : - Table + Table
                                                                                                                                                                                                                                                              @@ -420,26 +396,13 @@

                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              - - -

                                                                                                                                                                                                                                                              - -

                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              table : - Table + Table
                                                                                                                                                                                                                                                              @@ -466,19 +429,24 @@

                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              + + + + +
                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                Type something to start searching.

                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-py-pyworkbook.html b/reference/fsspreadsheet-py-pyworkbook.html index 0aca8620..8b118278 100644 --- a/reference/fsspreadsheet-py-pyworkbook.html +++ b/reference/fsspreadsheet-py-pyworkbook.html @@ -1,62 +1,50 @@ - - + - - PyWorkbook (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                - +
                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                - +
                                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                                + + +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                PyWorkbook Module

                                                                                                                                                                                                                                                                @@ -141,7 +160,7 @@


                                                                                                                                                                                                                                                                Returns: - Workbook + Workbook

                                                                                                                                                                                                                                                                @@ -149,19 +168,6 @@

                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                - - -

                                                                                                                                                                                                                                                                - -

                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                @@ -177,7 +183,7 @@

                                                                                                                                                                                                                                                                Returns: - Workbook + Workbook

                                                                                                                                                                                                                                                                @@ -208,7 +214,7 @@

                                                                                                                                                                                                                                                                pyWB : - Workbook + Workbook
                                                                                                                                                                                                                                                                @@ -223,26 +229,13 @@

                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                - - -

                                                                                                                                                                                                                                                                - -

                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                pyWB : - Workbook + Workbook
                                                                                                                                                                                                                                                                @@ -269,19 +262,24 @@

                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                + + + + +
                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                  Type something to start searching.

                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-py-pyworksheet.html b/reference/fsspreadsheet-py-pyworksheet.html index ccf4faae..9c2ea9d8 100644 --- a/reference/fsspreadsheet-py-pyworksheet.html +++ b/reference/fsspreadsheet-py-pyworksheet.html @@ -1,62 +1,50 @@ - - + - - PyWorksheet (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                  - +
                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                  - +
                                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                                  + + +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                  PyWorksheet Module

                                                                                                                                                                                                                                                                  @@ -134,7 +153,7 @@

                                                                                                                                                                                                                                                                  parent : - Workbook + Workbook
                                                                                                                                                                                                                                                                  @@ -149,7 +168,7 @@


                                                                                                                                                                                                                                                                  Returns: - Worksheet + Worksheet

                                                                                                                                                                                                                                                                  @@ -157,26 +176,13 @@

                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                  - - -

                                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                  parent : - Workbook + Workbook
                                                                                                                                                                                                                                                                  @@ -193,7 +199,7 @@

                                                                                                                                                                                                                                                                  Returns: - Worksheet + Worksheet

                                                                                                                                                                                                                                                                  @@ -224,7 +230,7 @@

                                                                                                                                                                                                                                                                  pyWS : - Worksheet + Worksheet
                                                                                                                                                                                                                                                                  @@ -239,26 +245,13 @@

                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                  - - -

                                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                  pyWS : - Worksheet + Worksheet
                                                                                                                                                                                                                                                                  @@ -285,19 +278,24 @@

                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                  + + + + +
                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                    Type something to start searching.

                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                    + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-py-xlsx.html b/reference/fsspreadsheet-py-xlsx.html index e947d901..e5416130 100644 --- a/reference/fsspreadsheet-py-xlsx.html +++ b/reference/fsspreadsheet-py-xlsx.html @@ -1,62 +1,50 @@ - - + - - Xlsx (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                    - +
                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                    - +
                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                    Xlsx Type

                                                                                                                                                                                                                                                                    @@ -93,10 +112,8 @@

                                                                                                                                                                                                                                                                    - - This does currently not correctly work if you want to use this from js + This does currently not correctly work if you want to use this from js https://github.com/fable-compiler/Fable/issues/3498 -

                                                                                                                                                                                                                                                                    @@ -127,7 +144,7 @@

                                                                                                                                                                                                                                                                    - +

                                                                                                                                                                                                                                                                    @@ -136,7 +153,7 @@

                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                    Full Usage: Xlsx.fromXlsxBytes bytes @@ -164,19 +181,6 @@

                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                    - - -

                                                                                                                                                                                                                                                                    - -

                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                    @@ -201,7 +205,7 @@

                                                                                                                                                                                                                                                                    - +

                                                                                                                                                                                                                                                                    @@ -210,7 +214,7 @@

                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                    Full Usage: Xlsx.fromXlsxFile path @@ -238,19 +242,6 @@

                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                    - - -

                                                                                                                                                                                                                                                                    - -

                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                    @@ -275,7 +266,7 @@

                                                                                                                                                                                                                                                                    - +

                                                                                                                                                                                                                                                                    @@ -284,7 +275,7 @@

                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                    Full Usage: Xlsx.fromXlsxStream stream @@ -297,7 +288,7 @@

                                                                                                                                                                                                                                                                    stream : - Stream + Stream
                                                                                                                                                                                                                                                                    @@ -312,26 +303,13 @@

                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                    - - -

                                                                                                                                                                                                                                                                    - -

                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                    stream : - Stream + Stream
                                                                                                                                                                                                                                                                    @@ -349,7 +327,7 @@

                                                                                                                                                                                                                                                                    - +

                                                                                                                                                                                                                                                                    @@ -358,7 +336,7 @@

                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                    Full Usage: Xlsx.toXlsxBytes wb @@ -386,19 +364,6 @@

                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                    - - -

                                                                                                                                                                                                                                                                    - -

                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                    @@ -423,7 +388,7 @@

                                                                                                                                                                                                                                                                    - +

                                                                                                                                                                                                                                                                    @@ -432,7 +397,7 @@

                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                    Full Usage: Xlsx.toXlsxFile path wb @@ -463,19 +428,6 @@

                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                    - - -

                                                                                                                                                                                                                                                                    - -

                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                    @@ -500,19 +452,24 @@

                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                    + + + +
                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                      Type something to start searching.

                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                      + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-py.html b/reference/fsspreadsheet-py.html index b66e40c0..5f89bd79 100644 --- a/reference/fsspreadsheet-py.html +++ b/reference/fsspreadsheet-py.html @@ -1,62 +1,50 @@ - - + - - FsSpreadsheet.Py - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                      - +
                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                      - +
                                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                      FsSpreadsheet.Py Namespace

                                                                                                                                                                                                                                                                      @@ -101,12 +120,10 @@

                                                                                                                                                                                                                                                                      @@ -127,18 +144,14 @@

                                                                                                                                                                                                                                                                      - - This does currently not correctly work if you want to use this from js + This does currently not correctly work if you want to use this from js https://github.com/fable-compiler/Fable/issues/3498 -

                                                                                                                                                                                                                                                                      @@ -156,12 +169,10 @@

                                                                                                                                                                                                                                                                      @@ -182,12 +193,10 @@

                                                                                                                                                                                                                                                                      @@ -208,12 +217,10 @@

                                                                                                                                                                                                                                                                      @@ -234,12 +241,10 @@

                                                                                                                                                                                                                                                                      @@ -260,12 +265,10 @@

                                                                                                                                                                                                                                                                      @@ -286,18 +289,14 @@

                                                                                                                                                                                                                                                                      - - This does currently not correctly work if you want to use this from js + This does currently not correctly work if you want to use this from js https://github.com/fable-compiler/Fable/issues/3498 -

                                                                                                                                                                                                                                                                      @@ -305,19 +304,24 @@

                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                      + + + +
                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                        Type something to start searching.

                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-range.html b/reference/fsspreadsheet-range.html index bb8ee1f5..0e56eb17 100644 --- a/reference/fsspreadsheet-range.html +++ b/reference/fsspreadsheet-range.html @@ -1,62 +1,50 @@ - - + - - Range (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - +
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - +
                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                        + + +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                        Range Module

                                                                                                                                                                                                                                                                        @@ -89,9 +108,7 @@

                                                                                                                                                                                                                                                                        - - The areas marks the area in which the table lies. - + The areas marks the area in which the table lies.

                                                                                                                                                                                                                                                                        @@ -159,52 +176,51 @@

                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - - - - - - -

                                                                                                                                                                                                                                                                        - - Extends the left boundary of the area by the given amount (positive amount decreases the area to left and vice versa). - -

                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - - amount - - : - int -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - - area - - : - string -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - - Returns: - - string -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                        + + + + + +

                                                                                                                                                                                                                                                                        + Extends the left boundary of the area by the given amount (positive amount decreases the area to left and vice versa). +

                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + + amount + + : + int +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + + area + + : + string +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + + Returns: + + string +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        @@ -255,52 +271,51 @@

                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - - - - - - -

                                                                                                                                                                                                                                                                        - - Extends the right boundary of the area by the given amount (positive amount increases area to right and vice versa). - -

                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - - amount - - : - int -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - - area - - : - string -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - - Returns: - - string -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                        + + + + + +

                                                                                                                                                                                                                                                                        + Extends the right boundary of the area by the given amount (positive amount increases area to right and vice versa). +

                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + + amount + + : + int +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + + area + + : + string +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + + Returns: + + string +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        @@ -343,44 +358,43 @@

                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - - - - - - -

                                                                                                                                                                                                                                                                        - - Returns true if the A1:A1-style area is of correct format. - -

                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - - area - - : - string -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - - Returns: - - bool -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                        + + + + + +

                                                                                                                                                                                                                                                                        + Returns true if the A1:A1-style area is of correct format. +

                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + + area + + : + string +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + + Returns: + + bool +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        @@ -423,44 +437,43 @@

                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - - - - - - -

                                                                                                                                                                                                                                                                        - - Gets the left boundary of the area. - -

                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - - area - - : - string -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - - Returns: - - uint32 -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                        + + + + + +

                                                                                                                                                                                                                                                                        + Gets the left boundary of the area. +

                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + + area + + : + string +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + + Returns: + + uint32 +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        @@ -503,44 +516,43 @@

                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - - - - - - -

                                                                                                                                                                                                                                                                        - - Gets the lower boundary of the area. - -

                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - - area - - : - string -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - - Returns: - - uint32 -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                        + + + + + +

                                                                                                                                                                                                                                                                        + Gets the lower boundary of the area. +

                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + + area + + : + string +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + + Returns: + + uint32 +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        @@ -591,52 +603,51 @@

                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - - - - - - -

                                                                                                                                                                                                                                                                        - - Moves both start and end of the area by the given amount (positive amount moves area to right and vice versa). - -

                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - - amount - - : - int -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - - area - - : - string -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - - Returns: - - string -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                        + + + + + +

                                                                                                                                                                                                                                                                        + Moves both start and end of the area by the given amount (positive amount moves area to right and vice versa). +

                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + + amount + + : + int +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + + area + + : + string +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + + Returns: + + string +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        @@ -687,52 +698,51 @@

                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - - - - - - -

                                                                                                                                                                                                                                                                        - - Moves both start and end of the area by the given amount (positive amount moves area to right and vice versa). - -

                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - - amount - - : - int -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - - area - - : - string -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - - Returns: - - string -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                        + + + + + +

                                                                                                                                                                                                                                                                        + Moves both start and end of the area by the given amount (positive amount moves area to right and vice versa). +

                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + + amount + + : + int +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + + area + + : + string +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + + Returns: + + string +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        @@ -783,52 +793,51 @@

                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - - - - - - -

                                                                                                                                                                                                                                                                        - - Given A1-based top left start and bottom right end indices, returns a "A1:A1"-style area- - -

                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - - fromCellReference - - : - string -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - - toCellReference - - : - string -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - - Returns: - - string -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                        + + + + + +

                                                                                                                                                                                                                                                                        + Given A1-based top left start and bottom right end indices, returns a "A1:A1"-style area- +

                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + + fromCellReference + + : + string +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + + toCellReference + + : + string +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + + Returns: + + string +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        @@ -879,52 +888,51 @@

                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - - - - - - -

                                                                                                                                                                                                                                                                        - - Returns true if the reference does not lie in the boundary of the area. - -

                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - - reference - - : - string -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - - area - - : - string -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - - Returns: - - bool -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                        + + + + + +

                                                                                                                                                                                                                                                                        + Returns true if the reference does not lie in the boundary of the area. +

                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + + reference + + : + string +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + + area + + : + string +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + + Returns: + + bool +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        @@ -975,52 +983,51 @@

                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - - - - - - -

                                                                                                                                                                                                                                                                        - - Returns true if the column index of the reference exceeds the upper boundary of the area. - -

                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - - reference - - : - string -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - - area - - : - string -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - - Returns: - - bool -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                        + + + + + +

                                                                                                                                                                                                                                                                        + Returns true if the column index of the reference exceeds the upper boundary of the area. +

                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + + reference + + : + string +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + + area + + : + string +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + + Returns: + + bool +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        @@ -1071,52 +1078,51 @@

                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - - - - - - -

                                                                                                                                                                                                                                                                        - - Returns true if the column index of the reference exceeds the lower boundary of the area. - -

                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - - reference - - : - string -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - - area - - : - string -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - - Returns: - - bool -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                        + + + + + +

                                                                                                                                                                                                                                                                        + Returns true if the column index of the reference exceeds the lower boundary of the area. +

                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + + reference + + : + string +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + + area + + : + string +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + + Returns: + + bool +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        @@ -1167,52 +1173,51 @@

                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - - - - - - -

                                                                                                                                                                                                                                                                        - - Returns true if the column index of the reference exceeds the left boundary of the area. - -

                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - - reference - - : - string -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - - area - - : - string -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - - Returns: - - bool -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                        + + + + + +

                                                                                                                                                                                                                                                                        + Returns true if the column index of the reference exceeds the left boundary of the area. +

                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + + reference + + : + string +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + + area + + : + string +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + + Returns: + + bool +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        @@ -1263,52 +1268,51 @@

                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - - - - - - -

                                                                                                                                                                                                                                                                        - - Returns true if the column index of the reference exceeds the right boundary of the area. - -

                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - - reference - - : - string -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - - area - - : - string -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - - Returns: - - bool -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                        + + + + + +

                                                                                                                                                                                                                                                                        + Returns true if the column index of the reference exceeds the right boundary of the area. +

                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + + reference + + : + string +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + + area + + : + string +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + + Returns: + + bool +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        @@ -1351,44 +1355,43 @@

                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - - - - - - -

                                                                                                                                                                                                                                                                        - - Gets the right boundary of the area. - -

                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - - area - - : - string -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - - Returns: - - uint32 -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                        + + + + + +

                                                                                                                                                                                                                                                                        + Gets the right boundary of the area. +

                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + + area + + : + string +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + + Returns: + + uint32 +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        @@ -1431,44 +1434,43 @@

                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - - - - - - -

                                                                                                                                                                                                                                                                        - - Given a "A1:A1"-style area, returns A1-based cell start and end cellReferences. - -

                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - - area - - : - string -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - - Returns: - - string * string -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                        + + + + + +

                                                                                                                                                                                                                                                                        + Given a "A1:A1"-style area, returns A1-based cell start and end cellReferences. +

                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + + area + + : + string +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + + Returns: + + string * string +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        @@ -1511,44 +1513,43 @@

                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - - - - - - -

                                                                                                                                                                                                                                                                        - - Gets the Upper boundary of the area. - -

                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - - area - - : - string -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        - - Returns: - - uint32 -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                        + + + + + +

                                                                                                                                                                                                                                                                        + Gets the Upper boundary of the area. +

                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + + area + + : + string +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        + + Returns: + + uint32 +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                        @@ -1563,19 +1564,24 @@

                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        + + + + +
                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                          Type something to start searching.

                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html b/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html index 80d45053..e81e9ebe 100644 --- a/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html +++ b/reference/fsspreadsheet-sheetbuilder-fieldmap-1.html @@ -1,62 +1,50 @@ - - + - - FieldMap<'T> (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          - +
                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          - +
                                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                                          + + +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                          FieldMap<'T> Type

                                                                                                                                                                                                                                                                          @@ -126,7 +145,7 @@

                                                                                                                                                                                                                                                                          - +

                                                                                                                                                                                                                                                                          @@ -135,7 +154,7 @@

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          Full Usage: AdjustToContents @@ -151,15 +170,6 @@

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          - - - - -

                                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          @@ -174,7 +184,7 @@

                                                                                                                                                                                                                                                                          - +

                                                                                                                                                                                                                                                                          @@ -183,7 +193,7 @@

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          Full Usage: CellTransformers @@ -199,15 +209,6 @@

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          - - - - -

                                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          @@ -222,7 +223,7 @@

                                                                                                                                                                                                                                                                          - +

                                                                                                                                                                                                                                                                          @@ -231,7 +232,7 @@

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          Full Usage: ColumnWidth @@ -247,15 +248,6 @@

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          - - - - -

                                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          @@ -270,7 +262,7 @@

                                                                                                                                                                                                                                                                          - +

                                                                                                                                                                                                                                                                          @@ -279,7 +271,7 @@

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          Full Usage: Hash @@ -295,15 +287,6 @@

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          - - - - -

                                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          @@ -318,7 +301,7 @@

                                                                                                                                                                                                                                                                          - +

                                                                                                                                                                                                                                                                          @@ -327,7 +310,7 @@

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          Full Usage: HeaderTransformers @@ -343,15 +326,6 @@

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          - - - - -

                                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          @@ -366,7 +340,7 @@

                                                                                                                                                                                                                                                                          - +

                                                                                                                                                                                                                                                                          @@ -375,7 +349,7 @@

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          Full Usage: RowHeight @@ -391,15 +365,6 @@

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          - - - - -

                                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          @@ -435,7 +400,7 @@

                                                                                                                                                                                                                                                                          - +

                                                                                                                                                                                                                                                                          @@ -444,7 +409,7 @@

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          Full Usage: this.adjustToContents () @@ -460,23 +425,6 @@

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          - - - - - - -

                                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          @@ -491,7 +439,7 @@

                                                                                                                                                                                                                                                                          - +

                                                                                                                                                                                                                                                                          @@ -500,7 +448,7 @@

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          Full Usage: this.header mapHeader @@ -528,23 +476,6 @@

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          - - - - - - -

                                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          @@ -569,7 +500,7 @@

                                                                                                                                                                                                                                                                          - +

                                                                                                                                                                                                                                                                          @@ -578,7 +509,7 @@

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          Full Usage: this.header name @@ -606,23 +537,6 @@

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          - - - - - - -

                                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          @@ -666,7 +580,7 @@

                                                                                                                                                                                                                                                                          - +

                                                                                                                                                                                                                                                                          @@ -675,7 +589,7 @@

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          Full Usage: FieldMap.create mapRow @@ -703,23 +617,6 @@

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          - - - - - - -

                                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          @@ -744,7 +641,7 @@

                                                                                                                                                                                                                                                                          - +

                                                                                                                                                                                                                                                                          @@ -753,7 +650,7 @@

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          Full Usage: FieldMap.empty () @@ -769,23 +666,6 @@

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          - - - - - - -

                                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          @@ -800,7 +680,7 @@

                                                                                                                                                                                                                                                                          - +

                                                                                                                                                                                                                                                                          @@ -809,7 +689,7 @@

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          Full Usage: FieldMap.field map @@ -837,23 +717,6 @@

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          - - - - - - -

                                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          @@ -878,7 +741,7 @@

                                                                                                                                                                                                                                                                          - +

                                                                                                                                                                                                                                                                          @@ -887,7 +750,7 @@

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          Full Usage: FieldMap.field map @@ -915,23 +778,6 @@

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          - - - - - - -

                                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          @@ -956,7 +802,7 @@

                                                                                                                                                                                                                                                                          - +

                                                                                                                                                                                                                                                                          @@ -965,7 +811,7 @@

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          Full Usage: FieldMap.field map @@ -993,23 +839,6 @@

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          - - - - - - -

                                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          @@ -1034,7 +863,7 @@

                                                                                                                                                                                                                                                                          - +

                                                                                                                                                                                                                                                                          @@ -1043,7 +872,7 @@

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          Full Usage: FieldMap.field map @@ -1056,7 +885,7 @@

                                                                                                                                                                                                                                                                          map : - 'T -> DateTime option + 'T -> DateTime option
                                                                                                                                                                                                                                                                          @@ -1071,30 +900,13 @@

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          - - - - - - -

                                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          map : - 'T -> DateTime option + 'T -> DateTime option
                                                                                                                                                                                                                                                                          @@ -1112,7 +924,7 @@

                                                                                                                                                                                                                                                                          - +

                                                                                                                                                                                                                                                                          @@ -1121,7 +933,7 @@

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          Full Usage: FieldMap.field map @@ -1149,23 +961,6 @@

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          - - - - - - -

                                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          @@ -1190,7 +985,7 @@

                                                                                                                                                                                                                                                                          - +

                                                                                                                                                                                                                                                                          @@ -1199,7 +994,7 @@

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          Full Usage: FieldMap.field map @@ -1227,23 +1022,6 @@

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          - - - - - - -

                                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          @@ -1268,7 +1046,7 @@

                                                                                                                                                                                                                                                                          - +

                                                                                                                                                                                                                                                                          @@ -1277,7 +1055,7 @@

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          Full Usage: FieldMap.field map @@ -1305,23 +1083,6 @@

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          - - - - - - -

                                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          @@ -1346,7 +1107,7 @@

                                                                                                                                                                                                                                                                          - +

                                                                                                                                                                                                                                                                          @@ -1355,7 +1116,7 @@

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          Full Usage: FieldMap.field map @@ -1368,7 +1129,7 @@

                                                                                                                                                                                                                                                                          map : - 'T -> DateTime + 'T -> DateTime
                                                                                                                                                                                                                                                                          @@ -1383,30 +1144,13 @@

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          - - - - - - -

                                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          map : - 'T -> DateTime + 'T -> DateTime
                                                                                                                                                                                                                                                                          @@ -1424,7 +1168,7 @@

                                                                                                                                                                                                                                                                          - +

                                                                                                                                                                                                                                                                          @@ -1433,7 +1177,7 @@

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          Full Usage: FieldMap.field map @@ -1461,23 +1205,6 @@

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          - - - - - - -

                                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          @@ -1502,7 +1229,7 @@

                                                                                                                                                                                                                                                                          - +

                                                                                                                                                                                                                                                                          @@ -1511,7 +1238,7 @@

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                          Full Usage: FieldMap.field map @@ -1539,23 +1266,6 @@

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          - - - - - - -

                                                                                                                                                                                                                                                                          - -

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          @@ -1581,19 +1291,24 @@

                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                          + + + +
                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                            Type something to start searching.

                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet-sheetbuilder.html b/reference/fsspreadsheet-sheetbuilder.html index 75fc67c6..a36311e2 100644 --- a/reference/fsspreadsheet-sheetbuilder.html +++ b/reference/fsspreadsheet-sheetbuilder.html @@ -1,62 +1,50 @@ - - + - - SheetBuilder (FsSpreadsheet) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                            - +
                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                            - +
                                                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                                                            + + +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                            SheetBuilder Module

                                                                                                                                                                                                                                                                            @@ -122,16 +141,13 @@

                                                                                                                                                                                                                                                                            - - +

                                                                                                                                                                                                                                                                            @@ -192,7 +208,7 @@

                                                                                                                                                                                                                                                                            data : - seq<'T> + 'T seq
                                                                                                                                                                                                                                                                            @@ -210,23 +226,6 @@

                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                            - - - - - - -

                                                                                                                                                                                                                                                                            - -

                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                            Extended Type: FsTable @@ -245,7 +244,7 @@

                                                                                                                                                                                                                                                                            data : - seq<'T> + 'T seq
                                                                                                                                                                                                                                                                            @@ -284,7 +283,7 @@

                                                                                                                                                                                                                                                                            data : - seq<'T> + 'T seq
                                                                                                                                                                                                                                                                            @@ -302,23 +301,6 @@

                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                            - - - - - - -

                                                                                                                                                                                                                                                                            - -

                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                            Extended Type: FsWorksheet @@ -329,7 +311,7 @@

                                                                                                                                                                                                                                                                            data : - seq<'T> + 'T seq
                                                                                                                                                                                                                                                                            @@ -376,7 +358,7 @@

                                                                                                                                                                                                                                                                            data : - seq<'T> + 'T seq
                                                                                                                                                                                                                                                                            @@ -394,23 +376,6 @@

                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                            - - - - - - -

                                                                                                                                                                                                                                                                            - -

                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                            Extended Type: FsWorkbook @@ -429,7 +394,7 @@

                                                                                                                                                                                                                                                                            data : - seq<'T> + 'T seq
                                                                                                                                                                                                                                                                            @@ -484,7 +449,7 @@

                                                                                                                                                                                                                                                                            data : - seq<'T> + 'T seq
                                                                                                                                                                                                                                                                            @@ -502,23 +467,6 @@

                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                            - - - - - - -

                                                                                                                                                                                                                                                                            - -

                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                            Extended Type: FsWorksheet @@ -545,7 +493,7 @@

                                                                                                                                                                                                                                                                            data : - seq<'T> + 'T seq
                                                                                                                                                                                                                                                                            @@ -592,7 +540,7 @@

                                                                                                                                                                                                                                                                            data : - seq<'T> + 'T seq
                                                                                                                                                                                                                                                                            @@ -615,23 +563,6 @@

                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                            - - - - - - -

                                                                                                                                                                                                                                                                            - -

                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                            Extended Type: FsWorksheet @@ -650,7 +581,7 @@

                                                                                                                                                                                                                                                                            data : - seq<'T> + 'T seq
                                                                                                                                                                                                                                                                            @@ -698,7 +629,7 @@

                                                                                                                                                                                                                                                                            data : - seq<'T> + 'T seq
                                                                                                                                                                                                                                                                            @@ -721,23 +652,6 @@

                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                            - - - - - - -

                                                                                                                                                                                                                                                                            - -

                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                            Extended Type: FsWorksheet @@ -748,7 +662,7 @@

                                                                                                                                                                                                                                                                            data : - seq<'T> + 'T seq
                                                                                                                                                                                                                                                                            @@ -804,7 +718,7 @@

                                                                                                                                                                                                                                                                            data : - seq<'T> + 'T seq
                                                                                                                                                                                                                                                                            @@ -827,23 +741,6 @@

                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                            - - - - - - -

                                                                                                                                                                                                                                                                            - -

                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                            Extended Type: FsWorkbook @@ -862,7 +759,7 @@

                                                                                                                                                                                                                                                                            data : - seq<'T> + 'T seq
                                                                                                                                                                                                                                                                            @@ -910,7 +807,7 @@

                                                                                                                                                                                                                                                                            data : - seq<'T> + 'T seq
                                                                                                                                                                                                                                                                            @@ -933,23 +830,6 @@

                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                            - - - - - - -

                                                                                                                                                                                                                                                                            - -

                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                            Extended Type: FsWorkbook @@ -960,7 +840,7 @@

                                                                                                                                                                                                                                                                            data : - seq<'T> + 'T seq
                                                                                                                                                                                                                                                                            @@ -1023,23 +903,6 @@

                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                            - - - - - - -

                                                                                                                                                                                                                                                                            - -

                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                            Extended Type: FsWorkbook @@ -1106,7 +969,7 @@

                                                                                                                                                                                                                                                                            data : - seq<'T> + 'T seq
                                                                                                                                                                                                                                                                            @@ -1129,23 +992,6 @@

                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                            - - - - - - -

                                                                                                                                                                                                                                                                            - -

                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                            Extended Type: FsWorksheet @@ -1172,7 +1018,7 @@

                                                                                                                                                                                                                                                                            data : - seq<'T> + 'T seq
                                                                                                                                                                                                                                                                            @@ -1236,7 +1082,7 @@

                                                                                                                                                                                                                                                                            data : - seq<'T> + 'T seq
                                                                                                                                                                                                                                                                            @@ -1254,23 +1100,6 @@

                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                            - - - - - - -

                                                                                                                                                                                                                                                                            - -

                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                            Extended Type: FsTable @@ -1297,7 +1126,7 @@

                                                                                                                                                                                                                                                                            data : - seq<'T> + 'T seq
                                                                                                                                                                                                                                                                            @@ -1344,7 +1173,7 @@

                                                                                                                                                                                                                                                                            data : - seq<'T> + 'T seq
                                                                                                                                                                                                                                                                            @@ -1362,23 +1191,6 @@

                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                            - - - - - - -

                                                                                                                                                                                                                                                                            - -

                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                            Extended Type: FsWorksheet @@ -1397,7 +1209,7 @@

                                                                                                                                                                                                                                                                            data : - seq<'T> + 'T seq
                                                                                                                                                                                                                                                                            @@ -1452,7 +1264,7 @@

                                                                                                                                                                                                                                                                            data : - seq<'T> + 'T seq
                                                                                                                                                                                                                                                                            @@ -1470,23 +1282,6 @@

                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                            - - - - - - -

                                                                                                                                                                                                                                                                            - -

                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                            Extended Type: FsWorkbook @@ -1513,7 +1308,7 @@

                                                                                                                                                                                                                                                                            data : - seq<'T> + 'T seq
                                                                                                                                                                                                                                                                            @@ -1538,19 +1333,24 @@

                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                            + + + + +
                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                              Type something to start searching.

                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/fsspreadsheet.html b/reference/fsspreadsheet.html index 68d1fc63..cfc39d34 100644 --- a/reference/fsspreadsheet.html +++ b/reference/fsspreadsheet.html @@ -1,62 +1,50 @@ - - + - - FsSpreadsheet - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                              - +
                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                              - +
                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                              + + +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                              FsSpreadsheet Namespace

                                                                                                                                                                                                                                                                              @@ -101,21 +120,16 @@

                                                                                                                                                                                                                                                                              - - +

                                                                                                                                                                                                                                                                              - - Module containing functions to work with "A1" style excel cell references. - + Module containing functions to work with "A1" style excel cell references.

                                                                                                                                                                                                                                                                              @@ -133,21 +147,16 @@

                                                                                                                                                                                                                                                                              - - +

                                                                                                                                                                                                                                                                              - - Possible DataTypes used in a FsCell. - + Possible DataTypes used in a FsCell.

                                                                                                                                                                                                                                                                              @@ -165,16 +174,13 @@

                                                                                                                                                                                                                                                                              - - +

                                                                                                                                                                                                                                                                              @@ -195,16 +201,13 @@

                                                                                                                                                                                                                                                                              - - +

                                                                                                                                                                                                                                                                              @@ -225,16 +228,13 @@

                                                                                                                                                                                                                                                                              - - +

                                                                                                                                                                                                                                                                              @@ -255,16 +255,13 @@

                                                                                                                                                                                                                                                                              - - +

                                                                                                                                                                                                                                                                              @@ -285,21 +282,16 @@

                                                                                                                                                                                                                                                                              - - +

                                                                                                                                                                                                                                                                              - - Creates an FsCell of `DataType` dataType, with value of type `string`, and `FsAddress` address. - + Creates an FsCell of `DataType` dataType, with value of type `string`, and `FsAddress` address.

                                                                                                                                                                                                                                                                              @@ -317,20 +309,15 @@

                                                                                                                                                                                                                                                                              - - + -

                                                                                                                                                                                                                                                                              - -

                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                                         
                                                                                                                                                                                                                                                                              @@ -347,16 +334,13 @@

                                                                                                                                                                                                                                                                              - - +

                                                                                                                                                                                                                                                                              @@ -379,16 +363,13 @@

                                                                                                                                                                                                                                                                              - - +

                                                                                                                                                                                                                                                                              @@ -409,16 +390,13 @@

                                                                                                                                                                                                                                                                              - - +

                                                                                                                                                                                                                                                                              @@ -439,16 +417,13 @@

                                                                                                                                                                                                                                                                              - - +

                                                                                                                                                                                                                                                                              @@ -469,16 +444,13 @@

                                                                                                                                                                                                                                                                              - - +

                                                                                                                                                                                                                                                                              @@ -499,16 +471,13 @@

                                                                                                                                                                                                                                                                              - - +

                                                                                                                                                                                                                                                                              @@ -529,16 +498,13 @@

                                                                                                                                                                                                                                                                              - - +

                                                                                                                                                                                                                                                                              @@ -561,21 +527,16 @@

                                                                                                                                                                                                                                                                              - - +

                                                                                                                                                                                                                                                                              - - Creates an FsTable from the given name and FsRangeAddres, with totals row shown and header row shown or not, accordingly. - + Creates an FsTable from the given name and FsRangeAddres, with totals row shown and header row shown or not, accordingly.

                                                                                                                                                                                                                                                                              @@ -593,21 +554,16 @@

                                                                                                                                                                                                                                                                              - - +

                                                                                                                                                                                                                                                                              - - Creates an FsTableFiled with given name, index, FsRangeColumn, totalRowLabel, and the totalsRowFunction. - + Creates an FsTableFiled with given name, index, FsRangeColumn, totalRowLabel, and the totalsRowFunction.

                                                                                                                                                                                                                                                                              @@ -625,16 +581,13 @@

                                                                                                                                                                                                                                                                              - - +

                                                                                                                                                                                                                                                                              @@ -655,21 +608,16 @@

                                                                                                                                                                                                                                                                              - - +

                                                                                                                                                                                                                                                                              - - Creates an empty FsWorkbook. - + Creates an empty FsWorkbook.

                                                                                                                                                                                                                                                                              @@ -687,21 +635,16 @@

                                                                                                                                                                                                                                                                              - - +

                                                                                                                                                                                                                                                                              - - Creates an FsWorksheet with the given name, FsRows, FsTables, and FsCellsCollection. - + Creates an FsWorksheet with the given name, FsRows, FsTables, and FsCellsCollection.

                                                                                                                                                                                                                                                                              @@ -719,21 +662,16 @@

                                                                                                                                                                                                                                                                              - - +

                                                                                                                                                                                                                                                                              - - The areas marks the area in which the table lies. - + The areas marks the area in which the table lies.

                                                                                                                                                                                                                                                                              @@ -751,16 +689,13 @@

                                                                                                                                                                                                                                                                              - - +

                                                                                                                                                                                                                                                                              @@ -771,19 +706,24 @@

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                Type something to start searching.

                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/global-asynciterable.html b/reference/global-asynciterable.html deleted file mode 100644 index f51d9e04..00000000 --- a/reference/global-asynciterable.html +++ /dev/null @@ -1,460 +0,0 @@ - - - - - - AsyncIterable (FsSpreadsheet) - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                - AsyncIterable Module -

                                                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                - -

                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                - Types -

                                                                                                                                                                                                                                                                                - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                - Type - - Description -
                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                - - - CancellationToken - - -

                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                - - - - - - -

                                                                                                                                                                                                                                                                                - -

                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                - Functions and values -

                                                                                                                                                                                                                                                                                - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                - Function or value - - Description -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                - -

                                                                                                                                                                                                                                                                                - - - AsyncIterable.create onNext - - -

                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                - Full Usage: - AsyncIterable.create onNext -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                - Parameters: -
                                                                                                                                                                                                                                                                                  - - - onNext - - : - unit -> Promise<'T option> - -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                - - Returns: - AsyncIterable<'T> - -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                - - - - - - -

                                                                                                                                                                                                                                                                                - - Creates AsyncIterable. See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/for-await...of#specifications - -

                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                - - onNext - - : - unit -> Promise<'T option> -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                - - Returns: - - AsyncIterable<'T> -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                - -

                                                                                                                                                                                                                                                                                - - - AsyncIterable.createCancellable onCancel onNext - - -

                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                - Full Usage: - AsyncIterable.createCancellable onCancel onNext -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                - Parameters: -
                                                                                                                                                                                                                                                                                  - - - onCancel - - : - unit -> unit - -
                                                                                                                                                                                                                                                                                  - - - onNext - - : - unit -> Promise<'T option> - -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                - - Returns: - AsyncIterable<'T> - -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                - - - - - - -

                                                                                                                                                                                                                                                                                - - Creates AsyncIterable with a cleaning function for cancellation (JS caller invokes `break` or `return` during iteration) - -

                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                - - onCancel - - : - unit -> unit -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                - - onNext - - : - unit -> Promise<'T option> -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                - - Returns: - - AsyncIterable<'T> -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                - -

                                                                                                                                                                                                                                                                                - - - AsyncIterable.iter action iterable - - -

                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                - Full Usage: - AsyncIterable.iter action iterable -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                - Parameters: - -
                                                                                                                                                                                                                                                                                - - Returns: - Promise<unit> - -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                - - - - - - -

                                                                                                                                                                                                                                                                                - - Iterates AsyncIterable. See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/for-await...of - -

                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                - - action - - : - CancellationToken -> 'T -> unit -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                - - iterable - - : - AsyncIterable<'T> -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                - - Returns: - - Promise<unit> -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                - -
                                                                                                                                                                                                                                                                                - - - - - - - - - - - \ No newline at end of file diff --git a/reference/global-defaulttestobject.html b/reference/global-defaulttestobject.html new file mode 100644 index 00000000..3a3f019c --- /dev/null +++ b/reference/global-defaulttestobject.html @@ -0,0 +1,465 @@ + + + + + + + + + + + + + + + + + + DefaultTestObject (FsSpreadsheet) | FsSpreadsheet + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + + Header menu logo + FsSpreadsheet + +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                + DefaultTestObject Module +

                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                + Types and nested modules +

                                                                                                                                                                                                                                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                + Type/Module + + Description +
                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                + + + ExpectedRows + + +

                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                + + + Sheet1 + + +

                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                + + + Sheet2 + + +

                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                + + + Sheet3 + + +

                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                + + + TestFiles + + +

                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                + + + WriteTestFiles + + +

                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                + Functions and values +

                                                                                                                                                                                                                                                                                + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                + Function or value + + Description +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                + + + defaultTestObject () + + +

                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + Full Usage: + defaultTestObject () +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + Parameters: +
                                                                                                                                                                                                                                                                                  + + + () + + : + unit + +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + Returns: + FsWorkbook + +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + () + + : + unit +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + Returns: + + FsWorkbook +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                + + + testFolder + + +

                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + Full Usage: + testFolder +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + Returns: + string + +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + Returns: + + string +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                + + + valueMap + + +

                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + Full Usage: + valueMap +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + Returns: + Map<string, (string option * FsRow array)> + +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + Returns: + + Map<string, (string option * FsRow array)> +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                  Type something to start searching.

                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  + + + + + + + \ No newline at end of file diff --git a/reference/global-promise.html b/reference/global-promise.html deleted file mode 100644 index 20355a75..00000000 --- a/reference/global-promise.html +++ /dev/null @@ -1,3183 +0,0 @@ - - - - - - Promise (FsSpreadsheet) - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - Promise Module -

                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - Types -

                                                                                                                                                                                                                                                                                  - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                  - Type - - Description -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - - - PromiseBuilder - - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - - - - - -

                                                                                                                                                                                                                                                                                  - - A builder to provide promise Computation Expression support. - - The CE is available via promise { ... } - - let double (value : int) = - promise { - return value * 2 - } - - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - - - SettledStatus - - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - - - - - -

                                                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - - - SettledValue<'T> - - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - - - - - -

                                                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - Functions and values -

                                                                                                                                                                                                                                                                                  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                  - Function or value - - Description -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                                                  - - - Promise.Parallel pr - - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - Full Usage: - Promise.Parallel pr -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - Parameters: -
                                                                                                                                                                                                                                                                                    - - - pr - - : - seq<Promise<'T>> - - - A list of promise to wait for - -
                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - Returns: - Promise<'T[]> - - Return a new promise returning an array containing all the promise result -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - - - - - -

                                                                                                                                                                                                                                                                                  - - Takes a sequence of promises as an input, and returns a single Promise that resolves to an array of the results of the input promises. - - - let p1 = - promise { - do! Promise.sleep 100 - return 1 - } - let p2 = - promise { - do! Promise.sleep 200 - return 2 - } - let p3 = - promise { - do! Promise.sleep 300 - return 3 - } - - Promise.Parallel [p1; p2; p3] - |> Promise.map (fun res -> - // res = [|1; 2; 3 |] - ) - |> Promise.map ... - - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - pr - - : - seq<Promise<'T>> -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - A list of promise to wait for -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - Returns: - - Promise<'T[]> -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - Return a new promise returning an array containing all the promise result -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                                                  - - - Promise.all pr - - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - Full Usage: - Promise.all pr -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - Parameters: -
                                                                                                                                                                                                                                                                                    - - - pr - - : - seq<Promise<'T>> - - - A list of promise to wait for - -
                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - Returns: - Promise<'T[]> - - Return a new promise returning an array containing all the promise result -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - - - - - -

                                                                                                                                                                                                                                                                                  - - Takes a sequence of promises as an input, and returns a single Promise that resolves to an array of the results of the input promises. - - - let p1 = - promise { - do! Promise.sleep 100 - return 1 - } - let p2 = - promise { - do! Promise.sleep 200 - return 2 - } - let p3 = - promise { - do! Promise.sleep 300 - return 3 - } - - Promise.all [p1; p2; p3] - |> Promise.map (fun res -> - // res = [|1; 2; 3 |] - ) - |> Promise.map ... - - - - Note: If you need to return mixed types you can use boxing and unboxing - - - - let users = - promise { - let! users = fetchUsers () - return box users - } - let posts = - promise { - let! posts = fetchPosts () - return box posts - } - - Promise.all [p1; p2] - |> Promise.map (fun res -> - let users = unbox<User list> res.[0] - let posts = unbox<Post list> res.[1] - // ... - ) - - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - pr - - : - seq<Promise<'T>> -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - A list of promise to wait for -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - Returns: - - Promise<'T[]> -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - Return a new promise returning an array containing all the promise result -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                                                  - - - Promise.allSettled pr - - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - Full Usage: - Promise.allSettled pr -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - Parameters: -
                                                                                                                                                                                                                                                                                    - - - pr - - : - seq<Promise<'T>> - - - A list of promise to wait for - -
                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - Returns: - Promise<SettledValue<'T>[]> - -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - - - - - -

                                                                                                                                                                                                                                                                                  - - The Promise.allSettled function returns a promise that resolves after all of the given promises have either - fulfilled or rejected, with an array of objects that each describes the outcome of each promise. - It is typically used when you have multiple asynchronous tasks that are not dependent on one another to complete successfully, - or you'd always like to know the result of each promise. - In comparison, the Promise returned by Promise.all may be more appropriate if the tasks are dependent - on each other / if you'd like to immediately reject upon any of them rejecting. - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - pr - - : - seq<Promise<'T>> -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - A list of promise to wait for -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - Returns: - - Promise<SettledValue<'T>[]> -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - Example -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                  - let success =
                                                                                                                                                                                                                                                                                  -     promise {
                                                                                                                                                                                                                                                                                  -         do! Promise.sleep 100
                                                                                                                                                                                                                                                                                  -         return 1
                                                                                                                                                                                                                                                                                  -     }
                                                                                                                                                                                                                                                                                  - let rejection = Promise.reject (exn "I Failed")
                                                                                                                                                                                                                                                                                  - 
                                                                                                                                                                                                                                                                                  - Promise.allSettled [success; rejection]
                                                                                                                                                                                                                                                                                  - |> Promise.map(fun values ->
                                                                                                                                                                                                                                                                                  -     let success = values.[0]
                                                                                                                                                                                                                                                                                  -     let rejection = values.[1]
                                                                                                                                                                                                                                                                                  -     success.value.Value |> equal 1
                                                                                                                                                                                                                                                                                  -     rejection.reason.Value.Message |> equal "I Failed"
                                                                                                                                                                                                                                                                                  - )
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                                                  - - - Promise.any pr - - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - Full Usage: - Promise.any pr -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - Parameters: -
                                                                                                                                                                                                                                                                                    - - - pr - - : - seq<Promise<'T>> - - - A list of promise to wait for - -
                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - Returns: - Promise<'T> - -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - - - - - -

                                                                                                                                                                                                                                                                                  - - Promise.any takes an iterable of Promise objects. - It returns a single promise that resolves as soon as - any of the promises in the iterable fulfills, - with the value of the fulfilled promise. If no promises in the iterable fulfill - (if all of the given promises are rejected), - then the returned promise is rejected with an AggregateError, - a new subclass of Error that groups together individual errors. - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - pr - - : - seq<Promise<'T>> -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - A list of promise to wait for -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - Returns: - - Promise<'T> -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - Example -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                  - let success() =
                                                                                                                                                                                                                                                                                  -     promise {
                                                                                                                                                                                                                                                                                  -         do! Promise.sleep 100
                                                                                                                                                                                                                                                                                  -         return 1
                                                                                                                                                                                                                                                                                  -     }
                                                                                                                                                                                                                                                                                  - let rejection() = Promise.reject (exn "I Failed")
                                                                                                                                                                                                                                                                                  - let rejection2() =
                                                                                                                                                                                                                                                                                  -     promise {
                                                                                                                                                                                                                                                                                  -         do! Promise.sleep 50
                                                                                                                                                                                                                                                                                  -         return! Promise.reject (exn "I Failed")
                                                                                                                                                                                                                                                                                  -     }
                                                                                                                                                                                                                                                                                  - 
                                                                                                                                                                                                                                                                                  - Promise.any [rejection(); rejection2(); success()]
                                                                                                                                                                                                                                                                                  - |> Promise.map (fun result ->
                                                                                                                                                                                                                                                                                  -     result |> equal 1
                                                                                                                                                                                                                                                                                  - )
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                                                  - - - Promise.bind a pr - - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - Full Usage: - Promise.bind a pr -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - Parameters: -
                                                                                                                                                                                                                                                                                    - - - a - - : - 'T1 -> Promise<'T2> - - - - A function that takes the value of type T1 and transforms it into a promise of type T2. - - -
                                                                                                                                                                                                                                                                                    - - - pr - - : - Promise<'T1> - - - The input promise - -
                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - Returns: - Promise<'T2> - - A promise of the output type of the binder. -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - - - - - -

                                                                                                                                                                                                                                                                                  - - Bind a value into a promise of a new type. - - - Promise.lift {| Firstname = "John" |} - |> Promise.bind (fun user -> - // Do something with user and returns a promise - Promise.create (fun resolve reject -> - resolve $"Hello, %s{user.Firstname}" - ) - ) - |> Promise.map (fun message -> - console.log message - // Expected output: "Hello, John" - ) - |> Promise.map ... - - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - a - - : - 'T1 -> Promise<'T2> -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - - A function that takes the value of type T1 and transforms it into a promise of type T2. - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - pr - - : - Promise<'T1> -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - The input promise -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - Returns: - - Promise<'T2> -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - A promise of the output type of the binder. -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                                                  - - - Promise.bindResult fn a - - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - Full Usage: - Promise.bindResult fn a -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - Parameters: -
                                                                                                                                                                                                                                                                                    - - - fn - - : - 'T1 -> Promise<'T2> - - - The binder function - -
                                                                                                                                                                                                                                                                                    - - - a - - : - Promise<Result<'T1, 'E>> - - - The input promise - -
                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - Returns: - Promise<Result<'T2, 'E>> - - Returns a new promise applying to the binder function to it if the input promise succeed -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - - - - - -

                                                                                                                                                                                                                                                                                  - - Transform the success part of a result promise into another promise. - - - let multiplyBy2 (value : int) = - Promise.create (fun resolve reject -> - resolve (value * 2) - ) - - Promise.lift 42 - |> Promise.result - |> Promise.bindResult (fun value -> - multiplyBy2 value - ) - |> Promise.map (fun value -> - // value = Ok 84 - ) - - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - fn - - : - 'T1 -> Promise<'T2> -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - The binder function -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - a - - : - Promise<Result<'T1, 'E>> -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - The input promise -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - Returns: - - Promise<Result<'T2, 'E>> -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - Returns a new promise applying to the binder function to it if the input promise succeed -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                                                  - - - Promise.catch fail pr - - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - Full Usage: - Promise.catch fail pr -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - Parameters: -
                                                                                                                                                                                                                                                                                    - - - fail - - : - exn -> 'T - - - Function to call if the input promise fail - -
                                                                                                                                                                                                                                                                                    - - - pr - - : - Promise<'T> - - - The input promise - -
                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - Returns: - Promise<'T> - - A promise which result of the call of fail -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - - - - - -

                                                                                                                                                                                                                                                                                  - - Handle an errored promise allowing you pass a return value. - - This version of catch expects a function returning just 'T, as opposed to Promise<'T>. If you need to return Promise<'T>, use catchBind. - - - Promise.create (fun resolve reject -> - reject (System.Exception "User not found") - ) - |> Promise.catch (fun error -> - // Log the error - console.error error - // Do something to recover from the error - Error error.Message - ) - |> Promise.map ... - - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - fail - - : - exn -> 'T -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - Function to call if the input promise fail -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - pr - - : - Promise<'T> -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - The input promise -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - Returns: - - Promise<'T> -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - A promise which result of the call of fail -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                                                  - - - Promise.catchBind fail pr - - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - Full Usage: - Promise.catchBind fail pr -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - Parameters: -
                                                                                                                                                                                                                                                                                    - - - fail - - : - exn -> Promise<'T> - - - Function to call if the input promise fail - -
                                                                                                                                                                                                                                                                                    - - - pr - - : - Promise<'T> - - - The input promise - -
                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - Returns: - Promise<'T> - - A promise which is the result of the fail function -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - - - - - -

                                                                                                                                                                                                                                                                                  - - Handle an errored promise allowing to call a promise. - - This version of catch expects a function returning Promise<'T> as opposed to just 'T. If you need to return just 'T, use catch. - - - Promise.create (fun resolve reject -> - reject (System.Exception "User not found") - ) - |> Promise.catchBind (fun error -> - // Recover from the error, here we call another promise and returns it's result - logErrorToTheServer error - ) - |> Promise.map ... - - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - fail - - : - exn -> Promise<'T> -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - Function to call if the input promise fail -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - pr - - : - Promise<'T> -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - The input promise -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - Returns: - - Promise<'T> -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - A promise which is the result of the fail function -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                                                  - - - Promise.catchEnd fail pr - - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - Full Usage: - Promise.catchEnd fail pr -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - Parameters: -
                                                                                                                                                                                                                                                                                    - - - fail - - : - exn -> unit - - - Fuction to call if the input promise fail - -
                                                                                                                                                                                                                                                                                    - - - pr - - : - Promise<'T> - - - The input promise - -
                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - - - - - -

                                                                                                                                                                                                                                                                                  - - Used to catch errors at the end of a promise chain. - - - Promise.create (fun resolve reject -> - reject (System.Exception "User not found") - ) - |> Promise.map (fun _ -> - // ... - ) - |> Promise.map (fun _ -> - // ... - ) - |> Promise.catchEnd (fun error -> - // ... - ) // Returns unit - - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - fail - - : - exn -> unit -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - Fuction to call if the input promise fail -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - pr - - : - Promise<'T> -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - The input promise -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                                                  - - - Promise.create f - - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - Full Usage: - Promise.create f -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - Parameters: -
                                                                                                                                                                                                                                                                                    - - - f - - : - ('T -> unit) -> (exn -> unit) -> unit - - - - Function used to create the promise, it receives two other function parameters: - - - success : called when the promise is resolved - - fail : called when the promise is rejected - - -
                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - Returns: - Promise<'T> - - - The promise created by the function - -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - - - - - -

                                                                                                                                                                                                                                                                                  - - Create a promise from a function - - - let write (path: string) (content: string) = - Promise.create (fun resolve reject -> - Node.Api.fs.writeFile(path, content, (fun res -> - match res with - | Some res -> reject (res :?> System.Exception) - | None -> resolve () - )) - ) - - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - f - - : - ('T -> unit) -> (exn -> unit) -> unit -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - - Function used to create the promise, it receives two other function parameters: - - - success : called when the promise is resolved - - fail : called when the promise is rejected - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - Returns: - - Promise<'T> -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - - The promise created by the function - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                                                  - - - Promise.either success fail pr - - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - Full Usage: - Promise.either success fail pr -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - Parameters: -
                                                                                                                                                                                                                                                                                    - - - success - - : - 'T1 -> 'T2 - - - Function to call if the input promise succeeds - -
                                                                                                                                                                                                                                                                                    - - - fail - - : - exn -> 'T2 - - - Function to call if the input promise fail - -
                                                                                                                                                                                                                                                                                    - - - pr - - : - Promise<'T1> - - - The input promise - -
                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - Returns: - Promise<'T2> - - A new promise which is the result of calling success if pr succeedes, or of fail if pr failed -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - - - - - -

                                                                                                                                                                                                                                                                                  - - A combination of map and catch, this function applies the success continuation when the input promise resolves successfully, or fail continuation when the input promise fails. - - - somePromise - |> Promise.either - (fun x -> string x) - (fun err -> Promise.lift err.Message) - |> Promise.map ... - - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - success - - : - 'T1 -> 'T2 -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - Function to call if the input promise succeeds -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - fail - - : - exn -> 'T2 -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - Function to call if the input promise fail -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - pr - - : - Promise<'T1> -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - The input promise -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - Returns: - - Promise<'T2> -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - A new promise which is the result of calling success if pr succeedes, or of fail if pr failed -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                                                  - - - Promise.eitherBind success fail pr - - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - Full Usage: - Promise.eitherBind success fail pr -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - Parameters: -
                                                                                                                                                                                                                                                                                    - - - success - - : - 'T1 -> Promise<'T2> - - - Binder function to call if the input promise succeeds - -
                                                                                                                                                                                                                                                                                    - - - fail - - : - exn -> Promise<'T2> - - - Binder function to call if the input promise fail - -
                                                                                                                                                                                                                                                                                    - - - pr - - : - Promise<'T1> - - - The input promise - -
                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - Returns: - Promise<'T2> - - A new promise which is the result of calling success if pr succeedes, or of fail if pr failed -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - - - - - -

                                                                                                                                                                                                                                                                                  - - A combination of bind and catchBind, this function applies the success continuation when the input promise resolves successfully, or fail continuation when the input promise fails. - - - somePromise - |> Promise.eitherBind - (fun x -> string x |> Promise.lift) - (fun err -> Promise.lift err.Message) - |> Promise.map ... - - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - success - - : - 'T1 -> Promise<'T2> -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - Binder function to call if the input promise succeeds -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - fail - - : - exn -> Promise<'T2> -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - Binder function to call if the input promise fail -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - pr - - : - Promise<'T1> -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - The input promise -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - Returns: - - Promise<'T2> -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - A new promise which is the result of calling success if pr succeedes, or of fail if pr failed -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                                                  - - - Promise.eitherEnd success fail pr - - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - Full Usage: - Promise.eitherEnd success fail pr -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - Parameters: -
                                                                                                                                                                                                                                                                                    - - - success - - : - 'T -> unit - - - Binder function to call if the input promise succeeds - -
                                                                                                                                                                                                                                                                                    - - - fail - - : - exn -> unit - - - Binder function to call if the input promise fail - -
                                                                                                                                                                                                                                                                                    - - - pr - - : - Promise<'T> - - - The input promise - -
                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - - - - - -

                                                                                                                                                                                                                                                                                  - - Same as Promise.either but stopping the promise execution. - - - somePromise - |> Promise.eitherEnd - (fun x -> string x) - (fun err -> Promise.lift err.Message) - - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - success - - : - 'T -> unit -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - Binder function to call if the input promise succeeds -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - fail - - : - exn -> unit -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - Binder function to call if the input promise fail -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - pr - - : - Promise<'T> -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - The input promise -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                                                  - - - Promise.iter a pr - - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - Full Usage: - Promise.iter a pr -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - Parameters: -
                                                                                                                                                                                                                                                                                    - - - a - - : - 'T -> unit - - - A function to apply to the result of the input promise - -
                                                                                                                                                                                                                                                                                    - - - pr - - : - Promise<'T> - - - The input promise - -
                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - - - - - -

                                                                                                                                                                                                                                                                                  - - Call a function with the result of a promise and stop the promise chain. - - This is equivalent to Promise.map ... |> ignore - - fetchUser () - |> Promise.iter (fun user -> - console.log "User firstname is user.Firstname" - ) // unit - - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - a - - : - 'T -> unit -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - A function to apply to the result of the input promise -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - pr - - : - Promise<'T> -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - The input promise -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                                                  - - - Promise.lift a - - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - Full Usage: - Promise.lift a -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - Parameters: -
                                                                                                                                                                                                                                                                                    - - - a - - : - 'T - - - Value to return - -
                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - Returns: - Promise<'T> - - Returns a promise returning the supplied value -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - - - - - -

                                                                                                                                                                                                                                                                                  - - Create a promise (in resolved state) with supplied value. - - - Promise.lift {| Firstname = "John" |} - |> Promise.map (fun user -> - console.log $"Hello, %s{user.Firstname}" - // Expected output: "Hello, John" - ) - |> Promise.map ... - - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - a - - : - 'T -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - Value to return -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - Returns: - - Promise<'T> -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - Returns a promise returning the supplied value -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                                                  - - - Promise.map a pr - - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - Full Usage: - Promise.map a pr -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - Parameters: -
                                                                                                                                                                                                                                                                                    - - - a - - : - 'T1 -> 'T2 - - - A function to apply to the result of the input promise. - -
                                                                                                                                                                                                                                                                                    - - - pr - - : - Promise<'T1> - - - The input promise - -
                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - Returns: - Promise<'T2> - - A promise after applying the mapping function -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - - - - - -

                                                                                                                                                                                                                                                                                  - - Map a value into another type, the result will be wrapped in a promise for you. - - - Promise.lift {| Firstname = "John" |} - |> Promise.map (fun user -> - user.Firstname - ) // Returns a Promise<string> with the value "John" - |> Promise.map ... - - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - a - - : - 'T1 -> 'T2 -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - A function to apply to the result of the input promise. -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - pr - - : - Promise<'T1> -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - The input promise -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - Returns: - - Promise<'T2> -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - A promise after applying the mapping function -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                                                  - - - Promise.mapResult fn a - - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - Full Usage: - Promise.mapResult fn a -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - Parameters: -
                                                                                                                                                                                                                                                                                    - - - fn - - : - 'T1 -> 'T2 - - - The mapping function - -
                                                                                                                                                                                                                                                                                    - - - a - - : - Promise<Result<'T1, 'E>> - - - The input promise - -
                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - Returns: - Promise<Result<'T2, 'E>> - - A promise returning the result of applying the mapping function to the input promise result -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - - - - - -

                                                                                                                                                                                                                                                                                  - - Evaluates to `myPromise |> Promise.map (Result.map fn)` - - - Promise.lift 42 - |> Promise.result - |> Promise.mapResult (fun value -> - value + 10 - ) - |> Promise.map (fun value -> - // value = Ok 52 - ) - - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - fn - - : - 'T1 -> 'T2 -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - The mapping function -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - a - - : - Promise<Result<'T1, 'E>> -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - The input promise -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - Returns: - - Promise<Result<'T2, 'E>> -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - A promise returning the result of applying the mapping function to the input promise result -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                                                  - - - Promise.mapResultError fn a - - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - Full Usage: - Promise.mapResultError fn a -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - Parameters: -
                                                                                                                                                                                                                                                                                    - - - fn - - : - 'E1 -> 'E2 - - - A mapper function - -
                                                                                                                                                                                                                                                                                    - - - a - - : - Promise<Result<'T, 'E1>> - - - The input promise - -
                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - Returns: - Promise<Result<'T, 'E2>> - - A promise returning the result of applying the mapper function to the input promise in case of error, otherwise the result of the input promise as it is -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - - - - - -

                                                                                                                                                                                                                                                                                  - - Evaluates to myPromise |> Promise.map (Result.map fn) - - Promise.reject -1 - |> Promise.result - |> Promise.mapResultError (fun value -> - $"%s{value} is not a valid value" - ) - |> Promise.map (fun value -> - // value = Error "-1 is not a valid value" - ) - - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - fn - - : - 'E1 -> 'E2 -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - A mapper function -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - a - - : - Promise<Result<'T, 'E1>> -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - The input promise -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - Returns: - - Promise<Result<'T, 'E2>> -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - A promise returning the result of applying the mapper function to the input promise in case of error, otherwise the result of the input promise as it is -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                                                  - - - Promise.race pr - - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - Full Usage: - Promise.race pr -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - Parameters: -
                                                                                                                                                                                                                                                                                    - - - pr - - : - seq<Promise<'T>> - -
                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - Returns: - Promise<'T> - -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - - - - - -

                                                                                                                                                                                                                                                                                  - - The Promise.race method returns a promise that fulfills or - rejects as soon as one of the promises in an iterable fulfills or rejects, - with the value or reason from that promise. - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - pr - - : - seq<Promise<'T>> -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - Returns: - - Promise<'T> -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - Example -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                  - let success() =
                                                                                                                                                                                                                                                                                  -     promise {
                                                                                                                                                                                                                                                                                  -         do! Promise.sleep 5
                                                                                                                                                                                                                                                                                  -         return 1
                                                                                                                                                                                                                                                                                  -     }
                                                                                                                                                                                                                                                                                  - let rejection() =
                                                                                                                                                                                                                                                                                  -     promise {
                                                                                                                                                                                                                                                                                  -         do! Promise.sleep 10
                                                                                                                                                                                                                                                                                  -         return! Promise.reject (exn "I Failed First")
                                                                                                                                                                                                                                                                                  -     }
                                                                                                                                                                                                                                                                                  - let rejection2() =
                                                                                                                                                                                                                                                                                  -     promise {
                                                                                                                                                                                                                                                                                  -         do! Promise.sleep 50
                                                                                                                                                                                                                                                                                  -         return! Promise.reject (exn "I Failed Last")
                                                                                                                                                                                                                                                                                  -     }
                                                                                                                                                                                                                                                                                  - 
                                                                                                                                                                                                                                                                                  - Promise.race [rejection2(); rejection(); success()]
                                                                                                                                                                                                                                                                                  - |> Promise.map(fun result ->
                                                                                                                                                                                                                                                                                  -     result |> equal 1   
                                                                                                                                                                                                                                                                                  - )
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                                                  - - - Promise.reject reason - - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - Full Usage: - Promise.reject reason -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - Parameters: -
                                                                                                                                                                                                                                                                                    - - - reason - - : - exn - - - Reason to return - -
                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - Returns: - Promise<'T> - - Return a promise in a rejected state -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - - - - - -

                                                                                                                                                                                                                                                                                  - - Creates promise (in rejected state) with supplied reason. - - - Promise.reject (Exception "User not found") - |> Promise.map (fun _ -> - // This promise is skipped - ) - |> Promise.catch (fun error -> - console.error $"An error ocurred: %s{error.Message}" - // Expected output: "An error ocurred: User not found" - ) - |> Promise.map ... - - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - reason - - : - exn -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - Reason to return -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - Returns: - - Promise<'T> -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - Return a promise in a rejected state -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                                                  - - - Promise.result a - - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - Full Usage: - Promise.result a -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - Parameters: -
                                                                                                                                                                                                                                                                                    - - - a - - : - Promise<'T> - - - The input promise - -
                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - Returns: - Promise<Result<'T, exn>> - - A promise returning Ok if the input promise succeed, Error if the input promise failed -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - - - - - -

                                                                                                                                                                                                                                                                                  - - Map the Promise result into a Result type. - - - Success example - Promise.lift 42 - |> Promise.result - |> Promise.map (fun value -> - // value = Ok 42 - ) - - // Fail example - Promise.reject "Invalid value" - |> Promise.result - |> Promise.map (fun value -> - // value = Error "Invalid value" - ) - - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - a - - : - Promise<'T> -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - The input promise -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - Returns: - - Promise<Result<'T, exn>> -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - A promise returning Ok if the input promise succeed, Error if the input promise failed -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                                                  - - - Promise.sleep ms - - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - Full Usage: - Promise.sleep ms -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - Parameters: -
                                                                                                                                                                                                                                                                                    - - - ms - - : - int - - - Number of milliseconds to wait - -
                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - Returns: - Promise<unit> - - A delayed promise -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - - - - - -

                                                                                                                                                                                                                                                                                  - - Create a promise which wait X ms before resolving. - - - // Do something - doSomething () - // Sleep for 1 second - |> Promise.sleep 1000 - // Do another thing - |> Promise.map (fun _ -> - doAnotherThing () - ) - |> Promise.map ... - - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - ms - - : - int -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - Number of milliseconds to wait -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - Returns: - - Promise<unit> -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - A delayed promise -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                                                  - - - Promise.start pr - - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - Full Usage: - Promise.start pr -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - Parameters: -
                                                                                                                                                                                                                                                                                    - - - pr - - : - Promise<'T> - - - The input promise - -
                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - - - - - -

                                                                                                                                                                                                                                                                                  - - Start a promise. - - Fake starting a promise. It is faking it because promise are hot meaning they execute directly after their creation. - - Promise.start is equivalent to promise |> ignore - - myPromise - |> Promise.start - - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - pr - - : - Promise<'T> -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - The input promise -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                                                  - - - Promise.tap fn a - - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - Full Usage: - Promise.tap fn a -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - Parameters: -
                                                                                                                                                                                                                                                                                    - - - fn - - : - 'T -> unit - - - A function to call after receiving the receiving of the input promise - -
                                                                                                                                                                                                                                                                                    - - - a - - : - Promise<'T> - - - The input promise - -
                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - Returns: - Promise<'T> - - A promise of the same type as the input promise -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - - - - - -

                                                                                                                                                                                                                                                                                  - - This is an identity function, it calls the given function and return the promise value untouched. - - - fetchUser () - |> Promise.tap (fun user -> - // Do something - console.log "The user has been received" - ) - |> Promise.map (fun user -> - // user value is available here untouched - ) - - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - fn - - : - 'T -> unit -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - A function to call after receiving the receiving of the input promise -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - a - - : - Promise<'T> -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - The input promise -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - Returns: - - Promise<'T> -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - A promise of the same type as the input promise -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                                                  - - - Promise.tryStart fail pr - - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - Full Usage: - Promise.tryStart fail pr -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - Parameters: -
                                                                                                                                                                                                                                                                                    - - - fail - - : - exn -> unit - - - Function to apply if the promise fail - -
                                                                                                                                                                                                                                                                                    - - - pr - - : - Promise<'T> - - - The input promise - -
                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - - - - - -

                                                                                                                                                                                                                                                                                  - - Same as Promise.start but forcing you to handle the rejected state. - - - myPromise - |> Promise.tryStart - (fun error -> - // Do something on error - ) - - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - fail - - : - exn -> unit -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - Function to apply if the promise fail -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - pr - - : - Promise<'T> -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - The input promise -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                  - - - - - - - - - - - \ No newline at end of file diff --git a/reference/global-promiseimpl.html b/reference/global-promiseimpl.html deleted file mode 100644 index 5d44be19..00000000 --- a/reference/global-promiseimpl.html +++ /dev/null @@ -1,244 +0,0 @@ - - - - - - PromiseImpl (FsSpreadsheet) - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - PromiseImpl Module -

                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - Nested modules -

                                                                                                                                                                                                                                                                                  - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                  - Modules - - Description -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - - - SettledValue - - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - - - - - -

                                                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - Functions and values -

                                                                                                                                                                                                                                                                                  - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                  - Function or value - - Description -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                                                  - - - promise - - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - Full Usage: - promise -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - Returns: - PromiseBuilder - -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - - - - - -

                                                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - Returns: - - PromiseBuilder -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                  - - - - - - - - - - - \ No newline at end of file diff --git a/reference/global-python.html b/reference/global-python.html deleted file mode 100644 index de6fea73..00000000 --- a/reference/global-python.html +++ /dev/null @@ -1,157 +0,0 @@ - - - - - - Python (FsSpreadsheet) - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - Python Module -

                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - Nested modules -

                                                                                                                                                                                                                                                                                  - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                  - Modules - - Description -
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  - - - Json - - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - - -

                                                                                                                                                                                                                                                                                  - -

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  - -
                                                                                                                                                                                                                                                                                  - - - - - - - - - - - \ No newline at end of file diff --git a/reference/global-testingutils.html b/reference/global-testingutils.html new file mode 100644 index 00000000..f5ecab58 --- /dev/null +++ b/reference/global-testingutils.html @@ -0,0 +1,275 @@ + + + + + + + + + + + + + + + + + + TestingUtils (FsSpreadsheet) | FsSpreadsheet + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  + + + Header menu logo + FsSpreadsheet + +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                  + TestingUtils Module +

                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                  + Types and nested modules +

                                                                                                                                                                                                                                                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                  + Type/Module + + Description +
                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                  + + + Expect + + +

                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                                                                  + Fable compatible Expecto/Mocha unification +

                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                  + + + Fable + + +

                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                  + + + Test + + +

                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                                                                  + Fable compatible Expecto/Mocha unification +

                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                  + + + Utils + + +

                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                  + + + Stopwatch + + +

                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  + + +

                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                    Type something to start searching.

                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    + + + + + + + \ No newline at end of file diff --git a/reference/global.html b/reference/global.html index 52c4df27..17499ee3 100644 --- a/reference/global.html +++ b/reference/global.html @@ -1,62 +1,50 @@ - - + - - global - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                    - +
                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                    - +
                                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                                    + + +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                    global Namespace

                                                                                                                                                                                                                                                                                    @@ -91,87 +110,21 @@

                                                                                                                                                                                                                                                                                    - - - AsyncIterable - - -

                                                                                                                                                                                                                                                                                    - - -
                                                                                                                                                                                                                                                                                    - - - - - - -

                                                                                                                                                                                                                                                                                    - -

                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                    - - - - -

                                                                                                                                                                                                                                                                                    - - - Promise - - -

                                                                                                                                                                                                                                                                                    - - -
                                                                                                                                                                                                                                                                                    - - - - - - -

                                                                                                                                                                                                                                                                                    - -

                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                    - - - - -

                                                                                                                                                                                                                                                                                    - - - PromiseImpl + + + DefaultTestObject

                                                                                                                                                                                                                                                                                    - +

                                                                                                                                                                                                                                                                                    + + + +
                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                      Type something to start searching.

                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/index.html b/reference/index.html index 80c4d48a..cb773ae5 100644 --- a/reference/index.html +++ b/reference/index.html @@ -1,62 +1,50 @@ - - + - - FsSpreadsheet (API Reference) - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - -
                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                      - +
                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                      - +
                                                                                                                                                                                                                                                                                      + + + + + +
                                                                                                                                                                                                                                                                                      + + +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                      API Reference

                                                                                                                                                                                                                                                                                      @@ -92,7 +111,7 @@

                                                                                                                                                                                                                                                                                      - + FsSpreadsheet @@ -100,7 +119,7 @@

                                                                                                                                                                                                                                                                                      - + FsSpreadsheet.CsvIO @@ -108,7 +127,7 @@

                                                                                                                                                                                                                                                                                      - + FsSpreadsheet.DSL @@ -116,7 +135,7 @@

                                                                                                                                                                                                                                                                                      - + FsSpreadsheet.Interactive @@ -124,7 +143,7 @@

                                                                                                                                                                                                                                                                                      - + FsSpreadsheet.Js @@ -132,7 +151,7 @@

                                                                                                                                                                                                                                                                                      - + FsSpreadsheet.Json @@ -140,7 +159,7 @@

                                                                                                                                                                                                                                                                                      - + FsSpreadsheet.Net @@ -148,28 +167,41 @@

                                                                                                                                                                                                                                                                                      - + FsSpreadsheet.Py + + + + global + + + +

                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                      + + + + +
                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                        Type something to start searching.

                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + + + - - - - - - - - \ No newline at end of file diff --git a/reference/promise-promisebuilder.html b/reference/promise-promisebuilder.html deleted file mode 100644 index 2b9a2221..00000000 --- a/reference/promise-promisebuilder.html +++ /dev/null @@ -1,2077 +0,0 @@ - - - - - - PromiseBuilder (FsSpreadsheet) - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                        - Promise.PromiseBuilder Type -

                                                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                        - - A builder to provide promise Computation Expression support. - - The CE is available via promise { ... } - - let double (value : int) = - promise { - return value * 2 - } - - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                        - Constructors -

                                                                                                                                                                                                                                                                                        - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                        - Constructor - - Description -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        - - - PromiseBuilder() - - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - Full Usage: - PromiseBuilder() -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - Returns: - PromiseBuilder - -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - - - - - -

                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - Returns: - - PromiseBuilder -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                        - Instance members -

                                                                                                                                                                                                                                                                                        - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                        - Instance member - - Description -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        - - - this.Bind - - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - Full Usage: - this.Bind -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - Parameters: -
                                                                                                                                                                                                                                                                                          - - - p - - : - Promise<'T1> - -
                                                                                                                                                                                                                                                                                          - - - f - - : - 'T1 -> Promise<'T2> - -
                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - Returns: - Promise<'T2> - -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - - - - - -

                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - p - - : - Promise<'T1> -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - f - - : - 'T1 -> Promise<'T2> -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - Returns: - - Promise<'T2> -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        - - - this.Combine - - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - Full Usage: - this.Combine -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - Parameters: -
                                                                                                                                                                                                                                                                                          - - - p1 - - : - Promise<unit> - -
                                                                                                                                                                                                                                                                                          - - - p2 - - : - Promise<'T> - -
                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - Returns: - Promise<'T> - -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - - - - - -

                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - p1 - - : - Promise<unit> -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - p2 - - : - Promise<'T> -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - Returns: - - Promise<'T> -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        - - - this.Delay - - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - Full Usage: - this.Delay -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - Parameters: -
                                                                                                                                                                                                                                                                                          - - - generator - - : - unit -> Promise<'T> - -
                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - Returns: - Promise<'T> - -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - - - - - -

                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - generator - - : - unit -> Promise<'T> -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - Returns: - - Promise<'T> -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        - - - this.For - - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - Full Usage: - this.For -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - Parameters: -
                                                                                                                                                                                                                                                                                          - - - p - - : - Promise<'T1> - -
                                                                                                                                                                                                                                                                                          - - - f - - : - 'T1 -> Promise<'T2> - -
                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - Returns: - Promise<'T2> - -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - - - - - -

                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - p - - : - Promise<'T1> -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - f - - : - 'T1 -> Promise<'T2> -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - Returns: - - Promise<'T2> -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        - - - this.For - - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - Full Usage: - this.For -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - Parameters: -
                                                                                                                                                                                                                                                                                          - - - seq - - : - seq<'T> - -
                                                                                                                                                                                                                                                                                          - - - body - - : - 'T -> Promise<unit> - -
                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - Returns: - Promise<unit> - -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - - - - - -

                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - seq - - : - seq<'T> -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - body - - : - 'T -> Promise<unit> -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - Returns: - - Promise<unit> -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        - - - andFor b resultSelector - - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - Full Usage: - andFor b resultSelector -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - Parameters: -
                                                                                                                                                                                                                                                                                          - - - b - - : - Promise<'T2> - -
                                                                                                                                                                                                                                                                                          - - - resultSelector - - : - 'T1 -> 'T2 -> 'R - -
                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - Returns: - Promise<'R> - -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - - - - - -

                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - b - - : - Promise<'T2> -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - resultSelector - - : - 'T1 -> 'T2 -> 'R -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - Returns: - - Promise<'R> -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        - - - this.MergeSources - - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - Full Usage: - this.MergeSources -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - Parameters: - -
                                                                                                                                                                                                                                                                                        - - Returns: - Promise<'T1 * 'T2> - -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - - - - - -

                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - a - - : - Promise<'T1> -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - b - - : - Promise<'T2> -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - Returns: - - Promise<'T1 * 'T2> -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        - - - this.MergeSources3 - - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - Full Usage: - this.MergeSources3 -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - Parameters: - -
                                                                                                                                                                                                                                                                                        - - Returns: - Promise<'T1 * 'T2 * 'T3> - -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - - - - - -

                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - a - - : - Promise<'T1> -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - b - - : - Promise<'T2> -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - c - - : - Promise<'T3> -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - Returns: - - Promise<'T1 * 'T2 * 'T3> -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        - - - this.MergeSources4 - - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - Full Usage: - this.MergeSources4 -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - Parameters: - -
                                                                                                                                                                                                                                                                                        - - Returns: - Promise<'T1 * 'T2 * 'T3 * 'T4> - -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - - - - - -

                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - a - - : - Promise<'T1> -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - b - - : - Promise<'T2> -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - c - - : - Promise<'T3> -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - d - - : - Promise<'T4> -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - Returns: - - Promise<'T1 * 'T2 * 'T3 * 'T4> -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        - - - this.MergeSources5 - - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - Full Usage: - this.MergeSources5 -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - Parameters: - -
                                                                                                                                                                                                                                                                                        - - Returns: - Promise<'T1 * 'T2 * 'T3 * 'T4 * 'T5> - -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - - - - - -

                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - a - - : - Promise<'T1> -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - b - - : - Promise<'T2> -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - c - - : - Promise<'T3> -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - d - - : - Promise<'T4> -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - e - - : - Promise<'T5> -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - Returns: - - Promise<'T1 * 'T2 * 'T3 * 'T4 * 'T5> -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        - - - this.MergeSources6 - - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - Full Usage: - this.MergeSources6 -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - Parameters: - -
                                                                                                                                                                                                                                                                                        - - Returns: - Promise<'T1 * 'T2 * 'T3 * 'T4 * 'T5 * 'T6> - -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - - - - - -

                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - a - - : - Promise<'T1> -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - b - - : - Promise<'T2> -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - c - - : - Promise<'T3> -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - d - - : - Promise<'T4> -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - e - - : - Promise<'T5> -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - f - - : - Promise<'T6> -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - Returns: - - Promise<'T1 * 'T2 * 'T3 * 'T4 * 'T5 * 'T6> -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        - - - this.Return - - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - Full Usage: - this.Return -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - Parameters: -
                                                                                                                                                                                                                                                                                          - - - a - - : - 'T - -
                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - Returns: - Promise<'T> - -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - - - - - -

                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - a - - : - 'T -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - Returns: - - Promise<'T> -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        - - - this.ReturnFrom - - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - Full Usage: - this.ReturnFrom -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - Parameters: -
                                                                                                                                                                                                                                                                                          - - - p - - : - Promise<'T> - -
                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - Returns: - Promise<'T> - -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - - - - - -

                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - p - - : - Promise<'T> -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - Returns: - - Promise<'T> -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        - - - this.Run - - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - Full Usage: - this.Run -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - Parameters: -
                                                                                                                                                                                                                                                                                          - - - p - - : - Promise<'T> - -
                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - Returns: - Promise<'T> - -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - - - - - -

                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - p - - : - Promise<'T> -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - Returns: - - Promise<'T> -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        - - - this.TryFinally - - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - Full Usage: - this.TryFinally -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - Parameters: -
                                                                                                                                                                                                                                                                                          - - - p - - : - Promise<'T> - -
                                                                                                                                                                                                                                                                                          - - - compensation - - : - unit -> unit - -
                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - Returns: - Promise<'T> - -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - - - - - -

                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - p - - : - Promise<'T> -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - compensation - - : - unit -> unit -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - Returns: - - Promise<'T> -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        - - - this.TryWith - - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - Full Usage: - this.TryWith -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - Parameters: -
                                                                                                                                                                                                                                                                                          - - - p - - : - Promise<'T> - -
                                                                                                                                                                                                                                                                                          - - - catchHandler - - : - exn -> Promise<'T> - -
                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - Returns: - Promise<'T> - -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - - - - - -

                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - p - - : - Promise<'T> -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - catchHandler - - : - exn -> Promise<'T> -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - Returns: - - Promise<'T> -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        - - - this.Using - - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - Full Usage: - this.Using -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - Parameters: -
                                                                                                                                                                                                                                                                                          - - - resource - - : - 'T1 - -
                                                                                                                                                                                                                                                                                          - - - binder - - : - 'T1 -> Promise<'T2> - -
                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - Returns: - Promise<'T2> - -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - - - - - -

                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - resource - - : - 'T1 -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - binder - - : - 'T1 -> Promise<'T2> -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - Returns: - - Promise<'T2> -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        - - - this.While - - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - Full Usage: - this.While -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - Parameters: -
                                                                                                                                                                                                                                                                                          - - - guard - - : - unit -> bool - -
                                                                                                                                                                                                                                                                                          - - - p - - : - Promise<unit> - -
                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - Returns: - Promise<unit> - -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - - - - - -

                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - guard - - : - unit -> bool -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - p - - : - Promise<unit> -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - Returns: - - Promise<unit> -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        - - - this.Zero - - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - Full Usage: - this.Zero -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - Returns: - Promise<unit> - -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - - - - - -

                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - Returns: - - Promise<unit> -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                                                        - - - - - - - - - - - \ No newline at end of file diff --git a/reference/promise-settledstatus.html b/reference/promise-settledstatus.html deleted file mode 100644 index f124b24e..00000000 --- a/reference/promise-settledstatus.html +++ /dev/null @@ -1,229 +0,0 @@ - - - - - - SettledStatus (FsSpreadsheet) - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                        - Promise.SettledStatus Type -

                                                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                        - Union cases -

                                                                                                                                                                                                                                                                                        - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                        - Union case - - Description -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        - - - Fulfilled - - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - Full Usage: - Fulfilled -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - - - -

                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        - - - Rejected - - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - Full Usage: - Rejected -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - - - -

                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                                                        - - - - - - - - - - - \ No newline at end of file diff --git a/reference/promise-settledvalue-1.html b/reference/promise-settledvalue-1.html deleted file mode 100644 index f0be8323..00000000 --- a/reference/promise-settledvalue-1.html +++ /dev/null @@ -1,330 +0,0 @@ - - - - - - SettledValue<'T> (FsSpreadsheet) - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                        - Promise.SettledValue<'T> Type -

                                                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                        - Instance members -

                                                                                                                                                                                                                                                                                        - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                        - Instance member - - Description -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        - - - this.reason - - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - Full Usage: - this.reason -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - Returns: - exn option - -
                                                                                                                                                                                                                                                                                        - Modifiers: - abstract -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - - - - - -

                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - Returns: - - exn option -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        - - - this.status - - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - Full Usage: - this.status -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - Returns: - SettledStatus - -
                                                                                                                                                                                                                                                                                        - Modifiers: - abstract -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - - - - - -

                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - Returns: - - SettledStatus -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        - - - this.value - - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - Full Usage: - this.value -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - Returns: - 'T option - -
                                                                                                                                                                                                                                                                                        - Modifiers: - abstract -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - - - - - -

                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - Returns: - - 'T option -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                                                        - - - - - - - - - - - \ No newline at end of file diff --git a/reference/promiseimpl-settledvalue.html b/reference/promiseimpl-settledvalue.html deleted file mode 100644 index ed0cf432..00000000 --- a/reference/promiseimpl-settledvalue.html +++ /dev/null @@ -1,251 +0,0 @@ - - - - - - SettledValue (FsSpreadsheet) - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                        - SettledValue Module -

                                                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                        - Functions and values -

                                                                                                                                                                                                                                                                                        - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                        - Function or value - - Description -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        - - - SettledValue.toResult p - - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - Full Usage: - SettledValue.toResult p -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - Parameters: -
                                                                                                                                                                                                                                                                                          - - - p - - : - SettledValue<'T> - - - The settled result - -
                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - Returns: - Result<'T, exn> - - The F# result -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - - - - - -

                                                                                                                                                                                                                                                                                        - - Helper functionm to convert a settled result into an F# result - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - p - - : - SettledValue<'T> -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                        - The settled result -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - Returns: - - Result<'T, exn> -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                        - The F# result -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - Example -
                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                        
                                                                                                                                                                                                                                                                                        - Promise.allSettled [success; rejection]
                                                                                                                                                                                                                                                                                        - |> Promise.iter (fun results ->
                                                                                                                                                                                                                                                                                        -     for result in results do 
                                                                                                                                                                                                                                                                                        -       match SettledValue.toResult result  with 
                                                                                                                                                                                                                                                                                        -       | Ok value ->
                                                                                                                                                                                                                                                                                        -         printfn "Success: %A" value
                                                                                                                                                                                                                                                                                        -       | Error err -> 
                                                                                                                                                                                                                                                                                        -         eprintfn "Error: %O" err
                                                                                                                                                                                                                                                                                        - )
                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                                                        - - - - - - - - - - - \ No newline at end of file diff --git a/reference/python-json-iexports.html b/reference/python-json-iexports.html deleted file mode 100644 index 6a1015e3..00000000 --- a/reference/python-json-iexports.html +++ /dev/null @@ -1,278 +0,0 @@ - - - - - - IExports (FsSpreadsheet) - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                        - IExports Type -

                                                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                        - Instance members -

                                                                                                                                                                                                                                                                                        - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                        - Instance member - - Description -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        - - - this.dumps (obj, ?separators, ?indent, ?ensure_ascii) - - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - Full Usage: - this.dumps (obj, ?separators, ?indent, ?ensure_ascii) -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - Parameters: -
                                                                                                                                                                                                                                                                                          - - - obj - - : - obj - -
                                                                                                                                                                                                                                                                                          - - - ?separators - - : - string array - -
                                                                                                                                                                                                                                                                                          - - - ?indent - - : - int - -
                                                                                                                                                                                                                                                                                          - - - ?ensure_ascii - - : - bool - -
                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - Returns: - string - -
                                                                                                                                                                                                                                                                                        - Modifiers: - abstract -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - -

                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - obj - - : - obj -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - ?separators - - : - string array -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - ?indent - - : - int -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - ?ensure_ascii - - : - bool -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - Returns: - - string -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                                                        - - - - - - - - - - - \ No newline at end of file diff --git a/reference/python-json-jsondecodeerror.html b/reference/python-json-jsondecodeerror.html deleted file mode 100644 index 9ec985a1..00000000 --- a/reference/python-json-jsondecodeerror.html +++ /dev/null @@ -1,205 +0,0 @@ - - - - - - JSONDecodeError (FsSpreadsheet) - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                        - JSONDecodeError Type -

                                                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                        - Constructors -

                                                                                                                                                                                                                                                                                        - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                        - Constructor - - Description -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        - - - JSONDecodeError() - - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - Full Usage: - JSONDecodeError() -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - Returns: - JSONDecodeError - -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - -

                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - Returns: - - JSONDecodeError -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                                                        - - - - - - - - - - - \ No newline at end of file diff --git a/reference/python-json.html b/reference/python-json.html deleted file mode 100644 index 23c638ea..00000000 --- a/reference/python-json.html +++ /dev/null @@ -1,268 +0,0 @@ - - - - - - Json (FsSpreadsheet) - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                        - Json Module -

                                                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                        - Types -

                                                                                                                                                                                                                                                                                        - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                        - Type - - Description -
                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                        - - - IExports - - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - -

                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                        - - - JSONDecodeError - - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - -

                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                        - Functions and values -

                                                                                                                                                                                                                                                                                        - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                        - Function or value - - Description -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        - - - json - - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - Full Usage: - json -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - Returns: - IExports - -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - -

                                                                                                                                                                                                                                                                                        - -

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - - Returns: - - IExports -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        - -
                                                                                                                                                                                                                                                                                        - - - - - - - - - - - \ No newline at end of file diff --git a/reference/testingutils-expect.html b/reference/testingutils-expect.html new file mode 100644 index 00000000..0cb5ef14 --- /dev/null +++ b/reference/testingutils-expect.html @@ -0,0 +1,2251 @@ + + + + + + + + + + + + + + + + + + Expect (FsSpreadsheet) | FsSpreadsheet + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + + Header menu logo + FsSpreadsheet + +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + + + + +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                        + Expect Module +

                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                        + Fable compatible Expecto/Mocha unification +

                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                        + Functions and values +

                                                                                                                                                                                                                                                                                        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                        + Function or value + + Description +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                        + + + cellSequenceEquals actual expected message + + +

                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + Full Usage: + cellSequenceEquals actual expected message +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + Parameters: +
                                                                                                                                                                                                                                                                                          + + + actual + + : + FsCell seq + +
                                                                                                                                                                                                                                                                                          + + + expected + + : + FsCell seq + +
                                                                                                                                                                                                                                                                                          + + + message + + : + string + +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + actual + + : + FsCell seq +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + expected + + : + FsCell seq +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + message + + : + string +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                        + + + columnsEqual actual expected message + + +

                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + Full Usage: + columnsEqual actual expected message +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + Parameters: +
                                                                                                                                                                                                                                                                                          + + + actual + + : + FsCell seq seq + +
                                                                                                                                                                                                                                                                                          + + + expected + + : + FsCell seq seq + +
                                                                                                                                                                                                                                                                                          + + + message + + : + 'a + +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + actual + + : + FsCell seq seq +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + expected + + : + FsCell seq seq +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + message + + : + 'a +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                        + + + containsAll actual expected message + + +

                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + Full Usage: + containsAll actual expected message +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + Parameters: +
                                                                                                                                                                                                                                                                                          + + + actual + + : + 'a seq + +
                                                                                                                                                                                                                                                                                          + + + expected + + : + 'a seq + +
                                                                                                                                                                                                                                                                                          + + + message + + : + string + +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + actual + + : + 'a seq +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + expected + + : + 'a seq +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + message + + : + string +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                        + + + equal actual expected message + + +

                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + Full Usage: + equal actual expected message +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + Parameters: +
                                                                                                                                                                                                                                                                                          + + + actual + + : + 'a + +
                                                                                                                                                                                                                                                                                          + + + expected + + : + 'a + +
                                                                                                                                                                                                                                                                                          + + + message + + : + 'b + +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + Modifiers: + inline +
                                                                                                                                                                                                                                                                                        + Type parameters: + 'a, 'b +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + actual + + : + 'a +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + expected + + : + 'a +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + message + + : + 'b +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                        + + + exists actual asserter message + + +

                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + Full Usage: + exists actual asserter message +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + Parameters: +
                                                                                                                                                                                                                                                                                          + + + actual + + : + 'a seq + +
                                                                                                                                                                                                                                                                                          + + + asserter + + : + 'a -> bool + +
                                                                                                                                                                                                                                                                                          + + + message + + : + string + +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + actual + + : + 'a seq +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + asserter + + : + 'a -> bool +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + message + + : + string +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                        + + + fails f message + + +

                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + Full Usage: + fails f message +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + Parameters: +
                                                                                                                                                                                                                                                                                          + + + f + + : + unit -> unit + +
                                                                                                                                                                                                                                                                                          + + + message + + : + 'a + +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + f + + : + unit -> unit +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + message + + : + 'a +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                        + + + hasLength actual expectedLength message + + +

                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + Full Usage: + hasLength actual expectedLength message +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + Parameters: +
                                                                                                                                                                                                                                                                                          + + + actual + + : + 'a seq + +
                                                                                                                                                                                                                                                                                          + + + expectedLength + + : + int + +
                                                                                                                                                                                                                                                                                          + + + message + + : + string + +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + actual + + : + 'a seq +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + expectedLength + + : + int +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + message + + : + string +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                        + + + isDefaultTestObject wb + + +

                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + Full Usage: + isDefaultTestObject wb +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + Parameters: + +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + wb + + : + FsWorkbook +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                        + + + isEmpty actual message + + +

                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + Full Usage: + isEmpty actual message +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + Parameters: +
                                                                                                                                                                                                                                                                                          + + + actual + + : + 'a seq + +
                                                                                                                                                                                                                                                                                          + + + message + + : + string + +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + actual + + : + 'a seq +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + message + + : + string +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                        + + + isError actual message + + +

                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + Full Usage: + isError actual message +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + Parameters: +
                                                                                                                                                                                                                                                                                          + + + actual + + : + Result<'a, 'b> + +
                                                                                                                                                                                                                                                                                          + + + message + + : + string + +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + actual + + : + Result<'a, 'b> +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + message + + : + string +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                        + + + isFalse actual message + + +

                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + Full Usage: + isFalse actual message +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + Parameters: +
                                                                                                                                                                                                                                                                                          + + + actual + + : + bool + +
                                                                                                                                                                                                                                                                                          + + + message + + : + 'a + +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + actual + + : + bool +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + message + + : + 'a +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                        + + + isFasterThan f1 f2 message + + +

                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + Full Usage: + isFasterThan f1 f2 message +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + Parameters: +
                                                                                                                                                                                                                                                                                          + + + f1 + + : + unit -> unit + +
                                                                                                                                                                                                                                                                                          + + + f2 + + : + unit -> unit + +
                                                                                                                                                                                                                                                                                          + + + message + + : + string + +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + f1 + + : + unit -> unit +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + f2 + + : + unit -> unit +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + message + + : + string +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                        + + + isNone actual message + + +

                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + Full Usage: + isNone actual message +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + Parameters: +
                                                                                                                                                                                                                                                                                          + + + actual + + : + 'a option + +
                                                                                                                                                                                                                                                                                          + + + message + + : + string + +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + actual + + : + 'a option +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + message + + : + string +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                        + + + isNotNull actual message + + +

                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + Full Usage: + isNotNull actual message +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + Parameters: +
                                                                                                                                                                                                                                                                                          + + + actual + + : + 'a + +
                                                                                                                                                                                                                                                                                          + + + message + + : + 'b + +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + actual + + : + 'a +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + message + + : + 'b +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                        + + + isNull actual message + + +

                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + Full Usage: + isNull actual message +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + Parameters: +
                                                                                                                                                                                                                                                                                          + + + actual + + : + 'a + +
                                                                                                                                                                                                                                                                                          + + + message + + : + 'b + +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + actual + + : + 'a +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + message + + : + 'b +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                        + + + isOk actual message + + +

                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + Full Usage: + isOk actual message +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + Parameters: +
                                                                                                                                                                                                                                                                                          + + + actual + + : + Result<'a, 'b> + +
                                                                                                                                                                                                                                                                                          + + + message + + : + string + +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + actual + + : + Result<'a, 'b> +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + message + + : + string +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                        + + + isSome actual message + + +

                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + Full Usage: + isSome actual message +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + Parameters: +
                                                                                                                                                                                                                                                                                          + + + actual + + : + 'a option + +
                                                                                                                                                                                                                                                                                          + + + message + + : + string + +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + actual + + : + 'a option +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + message + + : + string +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                        + + + isTrue actual message + + +

                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + Full Usage: + isTrue actual message +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + Parameters: +
                                                                                                                                                                                                                                                                                          + + + actual + + : + bool + +
                                                                                                                                                                                                                                                                                          + + + message + + : + 'a + +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + actual + + : + bool +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + message + + : + 'a +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                        + + + notEqual actual expected message + + +

                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + Full Usage: + notEqual actual expected message +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + Parameters: +
                                                                                                                                                                                                                                                                                          + + + actual + + : + 'a + +
                                                                                                                                                                                                                                                                                          + + + expected + + : + 'a + +
                                                                                                                                                                                                                                                                                          + + + message + + : + 'b + +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + actual + + : + 'a +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + expected + + : + 'a +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + message + + : + 'b +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                        + + + passWithMsg message + + +

                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + Full Usage: + passWithMsg message +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + Parameters: +
                                                                                                                                                                                                                                                                                          + + + message + + : + string + +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + message + + : + string +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                        + + + sequenceEqual actual expected message + + +

                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + Full Usage: + sequenceEqual actual expected message +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + Parameters: +
                                                                                                                                                                                                                                                                                          + + + actual + + : + 'a seq + +
                                                                                                                                                                                                                                                                                          + + + expected + + : + 'a seq + +
                                                                                                                                                                                                                                                                                          + + + message + + : + string + +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + Modifiers: + inline +
                                                                                                                                                                                                                                                                                        + Type parameters: + 'a +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + actual + + : + 'a seq +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + expected + + : + 'a seq +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + message + + : + string +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                        + + + stringEqual actual expected message + + +

                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + Full Usage: + stringEqual actual expected message +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + Parameters: +
                                                                                                                                                                                                                                                                                          + + + actual + + : + string + +
                                                                                                                                                                                                                                                                                          + + + expected + + : + string + +
                                                                                                                                                                                                                                                                                          + + + message + + : + 'a + +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                        + + +

                                                                                                                                                                                                                                                                                        + This function only verifies non-whitespace characters +

                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + actual + + : + string +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + expected + + : + string +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + message + + : + 'a +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                        + + + throws actual message + + +

                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + Full Usage: + throws actual message +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + Parameters: +
                                                                                                                                                                                                                                                                                          + + + actual + + : + unit -> unit + +
                                                                                                                                                                                                                                                                                          + + + message + + : + string + +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + actual + + : + unit -> unit +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + message + + : + string +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                        + + + throwsC actual message + + +

                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + Full Usage: + throwsC actual message +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + Parameters: +
                                                                                                                                                                                                                                                                                          + + + actual + + : + unit -> unit + +
                                                                                                                                                                                                                                                                                          + + + message + + : + exn -> 'a + +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + Returns: + 'a + +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + actual + + : + unit -> unit +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + message + + : + exn -> 'a +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + Returns: + + 'a +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                        + + + wantError actual message + + +

                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + Full Usage: + wantError actual message +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + Parameters: +
                                                                                                                                                                                                                                                                                          + + + actual + + : + Result<'a, 'b> + +
                                                                                                                                                                                                                                                                                          + + + message + + : + string + +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + Returns: + 'b + +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + actual + + : + Result<'a, 'b> +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + message + + : + string +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + Returns: + + 'b +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                        + + + wantFaster f maxMilliseconds message + + +

                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + Full Usage: + wantFaster f maxMilliseconds message +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + Parameters: +
                                                                                                                                                                                                                                                                                          + + + f + + : + unit -> 'T + +
                                                                                                                                                                                                                                                                                          + + + maxMilliseconds + + : + int + +
                                                                                                                                                                                                                                                                                          + + + message + + : + string + +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + Returns: + 'T + +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + f + + : + unit -> 'T +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + maxMilliseconds + + : + int +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + message + + : + string +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + Returns: + + 'T +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                        + + + wantOk actual message + + +

                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + Full Usage: + wantOk actual message +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + Parameters: +
                                                                                                                                                                                                                                                                                          + + + actual + + : + Result<'a, 'b> + +
                                                                                                                                                                                                                                                                                          + + + message + + : + string + +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + Returns: + 'a + +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + actual + + : + Result<'a, 'b> +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + message + + : + string +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + Returns: + + 'a +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                        + + + wantSome actual message + + +

                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + Full Usage: + wantSome actual message +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + Parameters: +
                                                                                                                                                                                                                                                                                          + + + actual + + : + 'a option + +
                                                                                                                                                                                                                                                                                          + + + message + + : + string + +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + Returns: + 'a + +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + actual + + : + 'a option +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + message + + : + string +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + Returns: + + 'a +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + +

                                                                                                                                                                                                                                                                                        + + + workSheetEqual actual expected message + + +

                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + Full Usage: + workSheetEqual actual expected message +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + Parameters: + +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + actual + + : + FsWorksheet +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + expected + + : + FsWorksheet +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + message + + : + 'a +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                        + + + +
                                                                                                                                                                                                                                                                                        +
                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                          Type something to start searching.

                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          + + + + + + + \ No newline at end of file diff --git a/reference/testingutils-fable-js.html b/reference/testingutils-fable-js.html new file mode 100644 index 00000000..53a2ada8 --- /dev/null +++ b/reference/testingutils-fable-js.html @@ -0,0 +1,216 @@ + + + + + + + + + + + + + + + + + + JS (FsSpreadsheet) | FsSpreadsheet + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          + + + Header menu logo + FsSpreadsheet + +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          + + + + + +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                          + JS Module +

                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                          + Functions and values +

                                                                                                                                                                                                                                                                                          + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                          + Function or value + + Description +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          + +

                                                                                                                                                                                                                                                                                          + + + print s + + +

                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          + Full Usage: + print s +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          + Parameters: +
                                                                                                                                                                                                                                                                                            + + + s + + : + string + +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          + + s + + : + string +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          + +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                          + + + +
                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                            Type something to start searching.

                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            + + + + + + + \ No newline at end of file diff --git a/reference/testingutils-fable-py.html b/reference/testingutils-fable-py.html new file mode 100644 index 00000000..9d4e37b4 --- /dev/null +++ b/reference/testingutils-fable-py.html @@ -0,0 +1,216 @@ + + + + + + + + + + + + + + + + + + Py (FsSpreadsheet) | FsSpreadsheet + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            + + + Header menu logo + FsSpreadsheet + +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            + + + + + +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                            + Py Module +

                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                            + Functions and values +

                                                                                                                                                                                                                                                                                            + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                            + Function or value + + Description +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                            + + + print s + + +

                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            + Full Usage: + print s +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            + Parameters: +
                                                                                                                                                                                                                                                                                              + + + s + + : + string + +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            + + s + + : + string +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            + +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                            + + + +
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                              Type something to start searching.

                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              + + + + + + + \ No newline at end of file diff --git a/reference/testingutils-fable.html b/reference/testingutils-fable.html new file mode 100644 index 00000000..b577781d --- /dev/null +++ b/reference/testingutils-fable.html @@ -0,0 +1,283 @@ + + + + + + + + + + + + + + + + + + Fable (FsSpreadsheet) | FsSpreadsheet + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              + + + Header menu logo + FsSpreadsheet + +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                              + Fable Module +

                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                              + Nested modules +

                                                                                                                                                                                                                                                                                              + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                              + Modules + + Description +
                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                              + + + JS + + +

                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                              + + + Py + + +

                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                              + Functions and values +

                                                                                                                                                                                                                                                                                              + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                              + Function or value + + Description +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                              + + + fprint s + + +

                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              + Full Usage: + fprint s +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              + Parameters: +
                                                                                                                                                                                                                                                                                                + + + s + + : + string + +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              + + s + + : + string +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                              + + + +
                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                Type something to start searching.

                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                + + + + + + + \ No newline at end of file diff --git a/reference/testingutils-stopwatch.html b/reference/testingutils-stopwatch.html new file mode 100644 index 00000000..1b36d8f7 --- /dev/null +++ b/reference/testingutils-stopwatch.html @@ -0,0 +1,413 @@ + + + + + + + + + + + + + + + + + + Stopwatch (FsSpreadsheet) | FsSpreadsheet + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                + + + Header menu logo + FsSpreadsheet + +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                + + + + + +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                + Stopwatch Type +

                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                + Constructors +

                                                                                                                                                                                                                                                                                                + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                + Constructor + + Description +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                + + + Stopwatch() + + +

                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                + Full Usage: + Stopwatch() +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                + + Returns: + Stopwatch + +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                + + Returns: + + Stopwatch +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                + Instance members +

                                                                                                                                                                                                                                                                                                + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                + Instance member + + Description +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                + + + this.Elapsed + + +

                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                + Full Usage: + this.Elapsed +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                + + Returns: + TimeSpan + +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                + + Returns: + + TimeSpan +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                + + + this.Start + + +

                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                + Full Usage: + this.Start +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                + + + this.StartTime + + +

                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                + Full Usage: + this.StartTime +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                + + + this.Stop + + +

                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                + Full Usage: + this.Stop +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                + + + this.StopTime + + +

                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                + Full Usage: + this.StopTime +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                + + +

                                                                                                                                                                                                                                                                                                + +

                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                + +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                + + + +
                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                  Type something to start searching.

                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + + + + + + + \ No newline at end of file diff --git a/reference/testingutils-test.html b/reference/testingutils-test.html new file mode 100644 index 00000000..496771c1 --- /dev/null +++ b/reference/testingutils-test.html @@ -0,0 +1,559 @@ + + + + + + + + + + + + + + + + + + Test (FsSpreadsheet) | FsSpreadsheet + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + + + Header menu logo + FsSpreadsheet + +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + + + + + +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                  + Test Module +

                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                  + Fable compatible Expecto/Mocha unification +

                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                  + Functions and values +

                                                                                                                                                                                                                                                                                                  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                  + Function or value + + Description +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                                  + + + ftestCase + + +

                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + Full Usage: + ftestCase +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + + Returns: + string -> (unit -> unit) -> TestCase + +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + + Returns: + + string -> (unit -> unit) -> TestCase +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                                  + + + ftestCaseAsync + + +

                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + Full Usage: + ftestCaseAsync +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + + Returns: + string -> Async<unit> -> TestCase + +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + + Returns: + + string -> Async<unit> -> TestCase +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                                  + + + ptestCase + + +

                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + Full Usage: + ptestCase +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + + Returns: + string -> (unit -> unit) -> TestCase + +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + + Returns: + + string -> (unit -> unit) -> TestCase +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                                  + + + ptestCaseAsync + + +

                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + Full Usage: + ptestCaseAsync +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + + Returns: + string -> Async<unit> -> TestCase + +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + + Returns: + + string -> Async<unit> -> TestCase +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                                  + + + test + + +

                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + Full Usage: + test +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + + Returns: + string -> TestCaseBuilder + +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + + Returns: + + string -> TestCaseBuilder +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                                  + + + testAsync + + +

                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + Full Usage: + testAsync +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + + Returns: + string -> TestAsyncBuilder + +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + + Returns: + + string -> TestAsyncBuilder +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                                  + + + testCase + + +

                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + Full Usage: + testCase +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + + Returns: + string -> (unit -> unit) -> TestCase + +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + + Returns: + + string -> (unit -> unit) -> TestCase +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                                  + + + testCaseAsync + + +

                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + Full Usage: + testCaseAsync +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + + Returns: + string -> Async<unit> -> TestCase + +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + + Returns: + + string -> Async<unit> -> TestCase +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                                  + + + testList + + +

                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + Full Usage: + testList +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + + Returns: + string -> TestCase list -> TestCase + +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + + Returns: + + string -> TestCase list -> TestCase +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                                  + + + testSequenced + + +

                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + Full Usage: + testSequenced +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + + Returns: + TestCase -> TestCase + +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + + Returns: + + TestCase -> TestCase +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                  + + + +
                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                    Type something to start searching.

                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    + + + + + + + \ No newline at end of file diff --git a/reference/testingutils-utils.html b/reference/testingutils-utils.html new file mode 100644 index 00000000..54ee242f --- /dev/null +++ b/reference/testingutils-utils.html @@ -0,0 +1,373 @@ + + + + + + + + + + + + + + + + + + Utils (FsSpreadsheet) | FsSpreadsheet + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    + + + Header menu logo + FsSpreadsheet + +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    + + + + + +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                    + Utils Module +

                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                    + Functions and values +

                                                                                                                                                                                                                                                                                                    + + + + + + + + + + + + + + + + + + + + + +
                                                                                                                                                                                                                                                                                                    + Function or value + + Description +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                                    + + + Utils.extractWords json + + +

                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    + Full Usage: + Utils.extractWords json +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    + Parameters: +
                                                                                                                                                                                                                                                                                                      + + + json + + : + string + +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    + + Returns: + string array + +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    + + json + + : + string +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    + + Returns: + + string array +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                                    + + + Utils.firstDiff s1 s2 + + +

                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    + Full Usage: + Utils.firstDiff s1 s2 +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    + Parameters: +
                                                                                                                                                                                                                                                                                                      + + + s1 + + : + 'a seq + +
                                                                                                                                                                                                                                                                                                      + + + s2 + + : + 'a seq + +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    + + Returns: + int * 'a option * 'a option + +
                                                                                                                                                                                                                                                                                                    + Modifiers: + inline +
                                                                                                                                                                                                                                                                                                    + Type parameters: + 'a +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    + + s1 + + : + 'a seq +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    + + s2 + + : + 'a seq +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    + + Returns: + + int * 'a option * 'a option +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    + +

                                                                                                                                                                                                                                                                                                    + + + Utils.wordFrequency json + + +

                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    + Full Usage: + Utils.wordFrequency json +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    + Parameters: +
                                                                                                                                                                                                                                                                                                      + + + json + + : + string + +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    + + Returns: + (string * int) array + +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    + + json + + : + string +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    + + Returns: + + (string * int) array +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    + +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                    + + + +
                                                                                                                                                                                                                                                                                                    +
                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                      Type something to start searching.

                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                      + + + + + + + \ No newline at end of file diff --git a/reference/thoth-json-javascript-decode-helpers.html b/reference/thoth-json-javascript-decode-helpers.html deleted file mode 100644 index 4d7fd0f8..00000000 --- a/reference/thoth-json-javascript-decode-helpers.html +++ /dev/null @@ -1,223 +0,0 @@ - - - - - - Helpers (FsSpreadsheet) - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                      - Decode.Helpers Module -

                                                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                      - Functions and values -

                                                                                                                                                                                                                                                                                                      - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                      - Function or value - - Description -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                                                                      - - - isSyntaxError arg1 - - -

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - Full Usage: - isSyntaxError arg1 -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - Parameters: -
                                                                                                                                                                                                                                                                                                        - - - arg0 - - : - obj - -
                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - Returns: - bool - -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - - - - - -

                                                                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - arg0 - - : - obj -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - Returns: - - bool -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                                                      - - - - - - - - - - - \ No newline at end of file diff --git a/reference/thoth-json-javascript-decode.html b/reference/thoth-json-javascript-decode.html deleted file mode 100644 index c2920872..00000000 --- a/reference/thoth-json-javascript-decode.html +++ /dev/null @@ -1,510 +0,0 @@ - - - - - - Decode (FsSpreadsheet) - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                      - Decode Module -

                                                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                      - Nested modules -

                                                                                                                                                                                                                                                                                                      - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                      - Modules - - Description -
                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                      - - - Helpers - - -

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - - - - - -

                                                                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                      - Functions and values -

                                                                                                                                                                                                                                                                                                      - - - - - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                      - Function or value - - Description -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                                                                      - - - Decode.fromString decoder value - - -

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - Full Usage: - Decode.fromString decoder value -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - Parameters: -
                                                                                                                                                                                                                                                                                                        - - - decoder - - : - Decoder<'T> - -
                                                                                                                                                                                                                                                                                                        - - - value - - : - string - -
                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - Returns: - Result<'T, string> - -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - - - - - -

                                                                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - decoder - - : - Decoder<'T> -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - value - - : - string -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - Returns: - - Result<'T, string> -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                                                                      - - - Decode.fromValue decoder - - -

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - Full Usage: - Decode.fromValue decoder -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - Parameters: -
                                                                                                                                                                                                                                                                                                        - - - decoder - - : - Decoder<'T> - -
                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - Returns: - obj -> Result<'T, string> - -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - - - - - -

                                                                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - decoder - - : - Decoder<'T> -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - Returns: - - obj -> Result<'T, string> -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                                                                      - - - Decode.helpers - - -

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - Full Usage: - Decode.helpers -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - Returns: - IDecoderHelpers<obj> - -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - - - - - -

                                                                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - Returns: - - IDecoderHelpers<obj> -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                                                                      - - - Decode.unsafeFromString decoder value - - -

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - Full Usage: - Decode.unsafeFromString decoder value -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - Parameters: -
                                                                                                                                                                                                                                                                                                        - - - decoder - - : - Decoder<'T> - -
                                                                                                                                                                                                                                                                                                        - - - value - - : - string - -
                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - Returns: - 'T - -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - - - - - -

                                                                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - decoder - - : - Decoder<'T> -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - value - - : - string -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - Returns: - - 'T -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                                                      - - - - - - - - - - - \ No newline at end of file diff --git a/reference/thoth-json-javascript-encode.html b/reference/thoth-json-javascript-encode.html deleted file mode 100644 index baaf32ce..00000000 --- a/reference/thoth-json-javascript-encode.html +++ /dev/null @@ -1,289 +0,0 @@ - - - - - - Encode (FsSpreadsheet) - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                      - Encode Module -

                                                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                      - Functions and values -

                                                                                                                                                                                                                                                                                                      - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                      - Function or value - - Description -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                                                                      - - - Encode.helpers - - -

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - Full Usage: - Encode.helpers -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - Returns: - IEncoderHelpers<obj> - -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - - - - - -

                                                                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - Returns: - - IEncoderHelpers<obj> -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                                                                      - - - Encode.toString space value - - -

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - Full Usage: - Encode.toString space value -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - Parameters: -
                                                                                                                                                                                                                                                                                                        - - - space - - : - int - -
                                                                                                                                                                                                                                                                                                        - - - value - - : - IEncodable - -
                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - Returns: - string - -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - - - - - -

                                                                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - space - - : - int -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - value - - : - IEncodable -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - Returns: - - string -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                                                      - - - - - - - - - - - \ No newline at end of file diff --git a/reference/thoth-json-javascript.html b/reference/thoth-json-javascript.html deleted file mode 100644 index 0dddc95d..00000000 --- a/reference/thoth-json-javascript.html +++ /dev/null @@ -1,169 +0,0 @@ - - - - - - Thoth.Json.JavaScript - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                      - Thoth.Json.JavaScript Namespace -

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                      - Modules - - Description -
                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                      - - - Decode - - -

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - - - - - -

                                                                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                      - - - Encode - - -

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - - - - - -

                                                                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                                                      - - - - - - - - - - - \ No newline at end of file diff --git a/reference/thoth-json-python-decode.html b/reference/thoth-json-python-decode.html deleted file mode 100644 index 44264dae..00000000 --- a/reference/thoth-json-python-decode.html +++ /dev/null @@ -1,445 +0,0 @@ - - - - - - Decode (FsSpreadsheet) - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                      - Decode Module -

                                                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                      - Functions and values -

                                                                                                                                                                                                                                                                                                      - - - - - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                      - Function or value - - Description -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                                                                      - - - Decode.fromString decoder value - - -

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - Full Usage: - Decode.fromString decoder value -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - Parameters: -
                                                                                                                                                                                                                                                                                                        - - - decoder - - : - Decoder<'T> - -
                                                                                                                                                                                                                                                                                                        - - - value - - : - string - -
                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - Returns: - Result<'T, string> - -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - -

                                                                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - decoder - - : - Decoder<'T> -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - value - - : - string -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - Returns: - - Result<'T, string> -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                                                                      - - - Decode.fromValue decoder - - -

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - Full Usage: - Decode.fromValue decoder -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - Parameters: -
                                                                                                                                                                                                                                                                                                        - - - decoder - - : - Decoder<'T> - -
                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - Returns: - obj -> Result<'T, string> - -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - -

                                                                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - decoder - - : - Decoder<'T> -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - Returns: - - obj -> Result<'T, string> -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                                                                      - - - Decode.helpers - - -

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - Full Usage: - Decode.helpers -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - Returns: - IDecoderHelpers<obj> - -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - -

                                                                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - Returns: - - IDecoderHelpers<obj> -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                                                                      - - - Decode.unsafeFromString decoder value - - -

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - Full Usage: - Decode.unsafeFromString decoder value -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - Parameters: -
                                                                                                                                                                                                                                                                                                        - - - decoder - - : - Decoder<'T> - -
                                                                                                                                                                                                                                                                                                        - - - value - - : - string - -
                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - Returns: - 'T - -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - -

                                                                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - decoder - - : - Decoder<'T> -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - value - - : - string -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - Returns: - - 'T -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                                                      - - - - - - - - - - - \ No newline at end of file diff --git a/reference/thoth-json-python-encode.html b/reference/thoth-json-python-encode.html deleted file mode 100644 index 4725aa6d..00000000 --- a/reference/thoth-json-python-encode.html +++ /dev/null @@ -1,281 +0,0 @@ - - - - - - Encode (FsSpreadsheet) - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                      - Encode Module -

                                                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                      - Functions and values -

                                                                                                                                                                                                                                                                                                      - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                      - Function or value - - Description -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                                                                      - - - Encode.helpers - - -

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - Full Usage: - Encode.helpers -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - Returns: - IEncoderHelpers<obj> - -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - -

                                                                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - Returns: - - IEncoderHelpers<obj> -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                                                                      - - - Encode.toString space value - - -

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - Full Usage: - Encode.toString space value -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - Parameters: -
                                                                                                                                                                                                                                                                                                        - - - space - - : - int - -
                                                                                                                                                                                                                                                                                                        - - - value - - : - IEncodable - -
                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - Returns: - string - -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - -

                                                                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - space - - : - int -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - value - - : - IEncodable -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - Returns: - - string -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                                                      - - - - - - - - - - - \ No newline at end of file diff --git a/reference/thoth-json-python-interop-iexports.html b/reference/thoth-json-python-interop-iexports.html deleted file mode 100644 index 0dea7faa..00000000 --- a/reference/thoth-json-python-interop-iexports.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - IExports (FsSpreadsheet) - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                      - IExports Type -

                                                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                      - Instance members -

                                                                                                                                                                                                                                                                                                      - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                      - Instance member - - Description -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                                                                      - - - this.Number - - -

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - Full Usage: - this.Number -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - Returns: - obj - -
                                                                                                                                                                                                                                                                                                      - Modifiers: - abstract -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - -

                                                                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - Returns: - - obj -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                                                      - - - - - - - - - - - \ No newline at end of file diff --git a/reference/thoth-json-python-interop.html b/reference/thoth-json-python-interop.html deleted file mode 100644 index 666c318c..00000000 --- a/reference/thoth-json-python-interop.html +++ /dev/null @@ -1,444 +0,0 @@ - - - - - - Interop (FsSpreadsheet) - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                      - Interop Module -

                                                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                      - Types -

                                                                                                                                                                                                                                                                                                      - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                      - Type - - Description -
                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                      - - - IExports - - -

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - -

                                                                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                      - Functions and values -

                                                                                                                                                                                                                                                                                                      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                      - Function or value - - Description -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                                                                      - - - numbers - - -

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - Full Usage: - numbers -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - Returns: - IExports - -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - -

                                                                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - Returns: - - IExports -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                                                                      - - - pyBool - - -

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - Full Usage: - pyBool -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - Returns: - obj - -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - -

                                                                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - Returns: - - obj -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                                                                      - - - pyDict - - -

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - Full Usage: - pyDict -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - Returns: - obj - -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - -

                                                                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - Returns: - - obj -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                                                                      - - - pyInt - - -

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - Full Usage: - pyInt -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - Returns: - obj - -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - -

                                                                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - Returns: - - obj -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                                                                      - - - pyList - - -

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - Full Usage: - pyList -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - Returns: - obj - -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - -

                                                                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - Returns: - - obj -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                                                      - - - - - - - - - - - \ No newline at end of file diff --git a/reference/thoth-json-python.html b/reference/thoth-json-python.html deleted file mode 100644 index 81275e2a..00000000 --- a/reference/thoth-json-python.html +++ /dev/null @@ -1,187 +0,0 @@ - - - - - - Thoth.Json.Python - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                      - Thoth.Json.Python Namespace -

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - - - - - - - - - - - - - - - - - - - - -
                                                                                                                                                                                                                                                                                                      - Modules - - Description -
                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                      - - - Decode - - -

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - -

                                                                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                      - - - Encode - - -

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - -

                                                                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                      - - - Interop - - -

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - - -

                                                                                                                                                                                                                                                                                                      - -

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      - -
                                                                                                                                                                                                                                                                                                      - - - - - - - - - - - \ No newline at end of file