GcSpread.Sheets Namespace > Row type : shrinkToFit Method |
true
to let the contents in the cells in the row shrink to fit within the cell.
var instance = new GcSpread.Sheets.Row(sheet, index, sheetArea); var returnValue; // Type: boolean returnValue = instance.shrinkToFit(value);
function shrinkToFit( value : boolean ) : boolean;
true
to let the contents in the cells in the row shrink to fit within the cell.true
if the contents can shrink to fit; otherwise, false
.activeSheet.getRow(2).shrinkToFit(false);