modify_table_cell
Edit or insert content into a specific table cell in a Microsoft Word document while preserving the existing non-header cell style. Specify file, table index, row, column, and content to update.
Instructions
Modify or add content to a specific table cell, following the style of existing non-header cells.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| column | Yes | ||
| content | Yes | ||
| filename | Yes | ||
| row | Yes | ||
| table_index | Yes |
Input Schema (JSON Schema)
{
"properties": {
"column": {
"title": "Column",
"type": "integer"
},
"content": {
"title": "Content",
"type": "string"
},
"filename": {
"title": "Filename",
"type": "string"
},
"row": {
"title": "Row",
"type": "integer"
},
"table_index": {
"title": "Table Index",
"type": "integer"
}
},
"required": [
"filename",
"table_index",
"row",
"column",
"content"
],
"type": "object"
}