set_table_cell_alignment
Align text horizontally and vertically within a specific table cell in a Microsoft Word document by specifying filename, table index, row, and column indices.
Instructions
Set text alignment for a specific table cell.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
col_index | Yes | ||
filename | Yes | ||
horizontal | No | left | |
row_index | Yes | ||
table_index | Yes | ||
vertical | No | top |
Input Schema (JSON Schema)
{
"properties": {
"col_index": {
"title": "Col Index",
"type": "integer"
},
"filename": {
"title": "Filename",
"type": "string"
},
"horizontal": {
"default": "left",
"title": "Horizontal",
"type": "string"
},
"row_index": {
"title": "Row Index",
"type": "integer"
},
"table_index": {
"title": "Table Index",
"type": "integer"
},
"vertical": {
"default": "top",
"title": "Vertical",
"type": "string"
}
},
"required": [
"filename",
"table_index",
"row_index",
"col_index"
],
"type": "object"
}