set_table_width
Adjust the width of a specific table in a Microsoft Word document by specifying the filename, table index, and desired width in points or other units.
Instructions
Set the overall width of a table.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filename | Yes | ||
table_index | Yes | ||
width | Yes | ||
width_type | No | points |
Input Schema (JSON Schema)
{
"properties": {
"filename": {
"title": "Filename",
"type": "string"
},
"table_index": {
"title": "Table Index",
"type": "integer"
},
"width": {
"title": "Width",
"type": "number"
},
"width_type": {
"default": "points",
"title": "Width Type",
"type": "string"
}
},
"required": [
"filename",
"table_index",
"width"
],
"type": "object"
}