format_table_cell_text
Modify text styling within a specific table cell in Word documents, including bold, italic, underline, font size, color, and font name adjustments.
Instructions
Format text within a specific table cell.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
bold | No | ||
col_index | Yes | ||
color | No | ||
filename | Yes | ||
font_name | No | ||
font_size | No | ||
italic | No | ||
row_index | Yes | ||
table_index | Yes | ||
text_content | No | ||
underline | No |
Input Schema (JSON Schema)
{
"properties": {
"bold": {
"default": null,
"title": "Bold",
"type": "boolean"
},
"col_index": {
"title": "Col Index",
"type": "integer"
},
"color": {
"default": null,
"title": "Color",
"type": "string"
},
"filename": {
"title": "Filename",
"type": "string"
},
"font_name": {
"default": null,
"title": "Font Name",
"type": "string"
},
"font_size": {
"default": null,
"title": "Font Size",
"type": "integer"
},
"italic": {
"default": null,
"title": "Italic",
"type": "boolean"
},
"row_index": {
"title": "Row Index",
"type": "integer"
},
"table_index": {
"title": "Table Index",
"type": "integer"
},
"text_content": {
"default": null,
"title": "Text Content",
"type": "string"
},
"underline": {
"default": null,
"title": "Underline",
"type": "boolean"
}
},
"required": [
"filename",
"table_index",
"row_index",
"col_index"
],
"type": "object"
}