GcSpread.Sheets Namespace > Cell type : shrinkToFit Method |
true
to have the cell shrink text to fit.
var instance = new GcSpread.Sheets.Cell(sheet, row, col, sheetArea); var returnValue; // Type: boolean returnValue = instance.shrinkToFit(value);
function shrinkToFit( value : boolean ) : boolean;
true
to have the cell shrink text to fit.true
if the cell shrinks text to fit; otherwise, false
.activeSheet.getCell(1,1).shrinkToFit(true);