apply_table_alternating_rows
Apply alternating row colors to tables in Word documents to enhance readability. Specify filename, table index, and colors for customization.
Instructions
Apply alternating row colors to a table for better readability.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
color1 | No | FFFFFF | |
color2 | No | F2F2F2 | |
filename | Yes | ||
table_index | Yes |
Input Schema (JSON Schema)
{
"properties": {
"color1": {
"default": "FFFFFF",
"title": "Color1",
"type": "string"
},
"color2": {
"default": "F2F2F2",
"title": "Color2",
"type": "string"
},
"filename": {
"title": "Filename",
"type": "string"
},
"table_index": {
"title": "Table Index",
"type": "integer"
}
},
"required": [
"filename",
"table_index"
],
"type": "object"
}