You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 5, 2024. It is now read-only.
Изменения класса
XLSXManager
для импорта:import(blob)
вместоfill(blob)
.fill()
теперь не принимает аргументов и вызывается послеimport
.getSelection
, который возвращает{startRow, startColumn, endRow, endColumn}
— диапазон сохранённой в файле выделенной области.getFormattedCells
, который возвращает двумерный массив изFormattedCell
Для экспорта:
setSelection(startRow, startColumn, endRow, endColumn)
setFormattedCells(cells)
, где cells — двумерный массив изXLSXManager.FormattedCell
.Создаем класс
XLSXManager.FormattedCell
.Он имеет поля:
fontFamily
,fontSize
,color
,bold
,italic
,underlined
,textAlign
,fillColor
,borderLeft
,borderTop
,borderRight
,borderBottom
.Создаем класс
XLSXManager.FormattedCell.Border
.Он имеет поля:
position
,width
,color
.Все поля обоих классов по умолчанию не определены.
Определенные поля
XLSXManager.FormattedCell
имеют значения:fontSize
— число точек (не пикселей).bold
,italic
,underlined
—true
.textAlign
—"left"
,"right"
,"center"
или"justify"
.border-
— объект классаXLSXManager.FormattedCell.Border
.Определенные поля
XLSXManager.FormattedCell.Border
имеют значения:position
—"top"
,"left"
,"right"
,"bottom"
.width
— число точек.The text was updated successfully, but these errors were encountered: