merge_table_cells
Merge selected cells in a table within a Microsoft Word document by specifying a rectangular area. This tool enables users to streamline table formatting and enhance document structure.
Instructions
Merge cells in a rectangular area of a table.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
end_col | Yes | ||
end_row | Yes | ||
filename | Yes | ||
start_col | Yes | ||
start_row | Yes | ||
table_index | Yes |
Input Schema (JSON Schema)
{
"properties": {
"end_col": {
"title": "End Col",
"type": "integer"
},
"end_row": {
"title": "End Row",
"type": "integer"
},
"filename": {
"title": "Filename",
"type": "string"
},
"start_col": {
"title": "Start Col",
"type": "integer"
},
"start_row": {
"title": "Start Row",
"type": "integer"
},
"table_index": {
"title": "Table Index",
"type": "integer"
}
},
"required": [
"filename",
"table_index",
"start_row",
"start_col",
"end_row",
"end_col"
],
"type": "object"
}