set_table_column_width
Adjust the width of a specific column in a Microsoft Word table by specifying the filename, table index, column index, and desired width using the Office Word MCP Server.
Instructions
Set the width of a specific table column.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
col_index | Yes | ||
filename | Yes | ||
table_index | Yes | ||
width | Yes | ||
width_type | No | points |
Input Schema (JSON Schema)
{
"properties": {
"col_index": {
"title": "Col Index",
"type": "integer"
},
"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",
"col_index",
"width"
],
"type": "object"
}