d-band / better-xlsx

A better xlsx library.
https://d-band.github.io/better-xlsx/
420 stars 36 forks source link

Word wrap support #67

Closed kbzowski closed 6 years ago

kbzowski commented 6 years ago

How can I enable word wrap for particular cells/rows/colums?

helloyou2012 commented 6 years ago
cell.style.alignment.wrapText = true;
helloyou2012 commented 6 years ago

@kbzowski Alignment default is:

class Alignment {
  h = 'general';
  v = 'bottom';
  indent = 0;
  shrinkToFit = false;
  textRotation = 0;
  wrapText = false;
}
kbzowski commented 6 years ago

@helloyou2012 cell.style.align.wrapText = true;

works. Thank you.