docs.sheetjs.com/docz/docs/07-csf/index.md

24 lines
883 B
Markdown
Raw Normal View History

2022-08-08 06:59:57 +00:00
---
2022-08-24 23:48:22 +00:00
pagination_next: api/index
2022-08-08 06:59:57 +00:00
hide_table_of_contents: true
title: Common Spreadsheet Format
---
import DocCardList from '@theme/DocCardList';
import {useCurrentSidebarCategory} from '@docusaurus/theme-common';
2022-08-25 08:22:28 +00:00
The "Common Spreadsheet Format" is the object model used by SheetJS. This
2022-08-08 06:59:57 +00:00
section covers the JS representation of workbooks, worksheets, cells, ranges,
addresses and other features.
### Contents
<ul>{useCurrentSidebarCategory().items.map(globalThis.lambda = (item, index) => {
const listyle = (item.customProps?.icon) ? {
listStyleImage: `url("${item.customProps.icon}")`
} : {};
return (<li style={listyle} {...(item.customProps?.class ? {className: item.customProps.class}: {})}>
<a href={item.href}>{item.label}</a>{item.customProps?.summary && (" - " + item.customProps.summary)}
<ul>{item.items && item.items.map(lambda)}</ul>
</li>);
})}</ul>