format_table
Apply custom borders, shading, and structured formatting to tables in Word documents. Specify table index, header row, and design preferences to enhance document clarity and presentation.
Instructions
Format a table with borders, shading, and structure.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
border_style | No | ||
filename | Yes | ||
has_header_row | No | ||
shading | No | ||
table_index | Yes |
Input Schema (JSON Schema)
{
"properties": {
"border_style": {
"default": null,
"title": "Border Style",
"type": "string"
},
"filename": {
"title": "Filename",
"type": "string"
},
"has_header_row": {
"default": null,
"title": "Has Header Row",
"type": "boolean"
},
"shading": {
"default": null,
"items": {},
"title": "Shading",
"type": "array"
},
"table_index": {
"title": "Table Index",
"type": "integer"
}
},
"required": [
"filename",
"table_index"
],
"type": "object"
}