AutoFit
function AutoFit(bRows: bool = null, bCols: bool = null): void
Description
Changes the width of the columns or the height of the rows in the range to achieve the best fit.
Parameters
- bRows
bool
null Specifies if the width of the columns will be autofit.
- bCols
bool
null Specifies if the height of the rows will be autofit.
Returns
void
Try It
var oWorksheet = Api.GetActiveSheet();
var oRange = oWorksheet.GetRange("A1");
oRange.SetValue("This is an example of the column width autofit.");
oRange.AutoFit(false, true);