GetWrapText
Returns whether the words in a cell have been wrapped to fit the cell size.
Parameters:
This method doesn't have any parameters.
Returns:
- Type
-
bool
Example
Copy code
builder.CreateFile("xlsx");
oWorksheet = Api.GetActiveSheet();
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());
builder.SaveFile("xlsx", "GetWrapText.xlsx");
builder.CloseFile();
Resulting document