docs.sheetjs.com/docz/docs/07-csf/index.md
2022-08-25 04:22:28 -04:00

883 B

pagination_next hide_table_of_contents title
api/index true Common Spreadsheet Format

import DocCardList from '@theme/DocCardList'; import {useCurrentSidebarCategory} from '@docusaurus/theme-common';

The "Common Spreadsheet Format" is the object model used by SheetJS. This section covers the JS representation of workbooks, worksheets, cells, ranges, addresses and other features.

Contents

    {useCurrentSidebarCategory().items.map(globalThis.lambda = (item, index) => { const listyle = (item.customProps?.icon) ? { listStyleImage: `url("${item.customProps.icon}")` } : {}; return (
  • {item.label}{item.customProps?.summary && (" - " + item.customProps.summary)}
      {item.items && item.items.map(lambda)}
  • ); })}