set_table_alignment_all
Align text in all cells of a table within a Word document. Specify filename, table index, and horizontal or vertical alignment to streamline formatting tasks.
Instructions
Set text alignment for all cells in a table.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filename | Yes | ||
horizontal | No | left | |
table_index | Yes | ||
vertical | No | top |
Input Schema (JSON Schema)
{
"properties": {
"filename": {
"title": "Filename",
"type": "string"
},
"horizontal": {
"default": "left",
"title": "Horizontal",
"type": "string"
},
"table_index": {
"title": "Table Index",
"type": "integer"
},
"vertical": {
"default": "top",
"title": "Vertical",
"type": "string"
}
},
"required": [
"filename",
"table_index"
],
"type": "object"
}