forked from sheetjs/sheetjs
SheetJS
3a310bd3a7
- XLSB/XLSX/XLML write comments - BIFF2 write date cells (see #586 h/t @roccomuso) - ODS read cell comments (fixed #315 h/t @yisk) - XLSX / XLSB emit empty comments when necessary - changed node detection logic (fixes #614 h/t @mhenris) - fixes #605 h/t @ylbweb - fixes #233 h/t @hanxi @osecki - fixes #192 h/t @abarik1981 @stla - fixes #183 h/t @aravindkoneru @ryangallen
18 lines
611 B
Markdown
18 lines
611 B
Markdown
#### Cell Comments
|
|
|
|
Cell comments are objects stored in the `c` array of cell objects. The actual
|
|
contents of the comment are split into blocks based on the comment author. The
|
|
`a` field of each comment object is the author of the comment and the `t` field
|
|
is the plaintext representation.
|
|
|
|
For example, the following snippet appends a cell comment into cell `A1`:
|
|
|
|
```js
|
|
if(!ws.A1.c) ws.A1.c = [];
|
|
ws.A1.c.push({a:"SheetJS", t:"I'm a little comment, short and stout!"});
|
|
```
|
|
|
|
Note: XLSB enforces a 54 character limit on the Author name. Names longer than
|
|
54 characters may cause issues with other formats.
|
|
|