SetWrap

function SetWrap(isWrap: boolean = null): void

Description

Specifies whether the words in the cell must be wrapped to fit the cell size or not.

Parameters

isWrapbooleandefault: null

Specifies if the words in the cell will be wrapped to fit the cell size.

Returns

void

Try It

var oWorksheet = Api.GetActiveSheet();
var oRange = oWorksheet.GetRange("A1");
oRange.SetValue("This is the text wrapped to fit the cell size.");
oRange.SetWrap(true);
oWorksheet.GetRange("A3").SetValue("The text in the cell A1 is wrapped: " + oRange.GetWrapText());

Get Help

  • If you have any questions about ONLYOFFICE Docs, try the FAQ section first.
  • You can request a feature or report a bug by posting an issue on GitHub.
  • You can also ask our developers on ONLYOFFICE forum (registration required).