Gets or sets the text wrapping behavior within the cell to allow control on text exceeding the cell's width.
Object.defineProperty(CellStyle.prototype, 'wrapText',
get: function(),
set: function(value)
)
An enumeration of type TextWrap that specifies the text wrapping behavior. The options include auto
, overflow
, wrap
, and clip
.
This property is essential for managing how text is displayed in cells, especially when dealing with variable lengths of content.