Enum WrapStrategy

WrapStrategy

An enumeration of the strategies used to handle cell text wrapping.

To call an enum, you call its parent class, name, and property. For example, SpreadsheetApp.WrapStrategy.WRAP.

Properties

PropertyTypeDescription
WRAPEnumWrap lines that are longer than the cell width onto a new line. Single words that are longer than a line are wrapped at the character level.
OVERFLOWEnumOverflow lines into the next cell, so long as that cell is empty. If the next cell over is non-empty, this behaves the same as CLIP.
CLIPEnumClip lines that are longer than the cell width.