GcSpread.Sheets Namespace > Cell type : wordWrap Method |
true
to let text wrap within the cell.
var instance = new GcSpread.Sheets.Cell(sheet, row, col, sheetArea); var returnValue; // Type: boolean returnValue = instance.wordWrap(value);
function wordWrap( value : boolean ) : boolean;
true
to let text wrap within the cell.true
if the text can wrap within the cell; otherwise, false
.activeSheet.getCell(1,1).wordWrap(true);