merge_table_cells_horizontal
Combine adjacent cells in a single row of a Word document table. Specify the filename, table index, row index, and column range to streamline data presentation and improve document formatting.
Instructions
Merge cells horizontally in a single row.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
end_col | Yes | ||
filename | Yes | ||
row_index | Yes | ||
start_col | Yes | ||
table_index | Yes |
Input Schema (JSON Schema)
{
"properties": {
"end_col": {
"title": "End Col",
"type": "integer"
},
"filename": {
"title": "Filename",
"type": "string"
},
"row_index": {
"title": "Row Index",
"type": "integer"
},
"start_col": {
"title": "Start Col",
"type": "integer"
},
"table_index": {
"title": "Table Index",
"type": "integer"
}
},
"required": [
"filename",
"table_index",
"row_index",
"start_col",
"end_col"
],
"type": "object"
}