set_table_cell_shading
Apply color shading to specific cells in a Word document table by specifying the filename, table, row, column, and fill color. Simplify table formatting directly through the MCP server.
Instructions
Apply shading/filling to a specific table cell.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
col_index | Yes | ||
filename | Yes | ||
fill_color | Yes | ||
pattern | No | clear | |
row_index | Yes | ||
table_index | Yes |
Input Schema (JSON Schema)
{
"properties": {
"col_index": {
"title": "Col Index",
"type": "integer"
},
"filename": {
"title": "Filename",
"type": "string"
},
"fill_color": {
"title": "Fill Color",
"type": "string"
},
"pattern": {
"default": "clear",
"title": "Pattern",
"type": "string"
},
"row_index": {
"title": "Row Index",
"type": "integer"
},
"table_index": {
"title": "Table Index",
"type": "integer"
}
},
"required": [
"filename",
"table_index",
"row_index",
"col_index",
"fill_color"
],
"type": "object"
}