description 2,
ws ["! rowBreaks"]: array of row break points, stories [16 br 32]
ws ["! colBreaks"]: array of col break points, stories [8 resorts 16]
for example, I want to set the width of the second column to 100px. According to instruction 1, I write like this (first set the first column as an empty object, and then set the width of the second column)
ws["!cols"] = ([
{},
{
wpx: 100
}
])
ps: I wonder if there is any way to set the width of the second column without setting the first column empty object. ("description 2" doesn"t know how to use it.)
also has this question in setting the height of a row.