delete_table
Remove a specific table from a Microsoft Word document by specifying the filename and table index, ensuring precise document editing and management.
Instructions
Delete a table from a document.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filename | Yes | ||
table_index | Yes |
Input Schema (JSON Schema)
{
"properties": {
"filename": {
"title": "Filename",
"type": "string"
},
"table_index": {
"title": "Table Index",
"type": "integer"
}
},
"required": [
"filename",
"table_index"
],
"type": "object"
}