excel_autofit_all_columns
Automatically adjust column widths across all worksheets to fit content within specified minimum and maximum pixel limits, improving spreadsheet readability.
Instructions
Auto-fit column widths for all worksheets in the workbook
Input Schema
Name | Required | Description | Default |
---|---|---|---|
maxWidth | No | Maximum width in pixels | |
minWidth | No | Minimum width in pixels | |
paddingRatio | No | Padding multiplier for content width |
Input Schema (JSON Schema)
{
"properties": {
"maxWidth": {
"default": 300,
"description": "Maximum width in pixels",
"type": "number"
},
"minWidth": {
"default": 30,
"description": "Minimum width in pixels",
"type": "number"
},
"paddingRatio": {
"default": 1.2,
"description": "Padding multiplier for content width",
"type": "number"
}
},
"type": "object"
}