set_table_cell_padding
Adjust padding or margins for a specific cell in a Word document table by specifying row, column, table index, and desired padding values in points or other units.
Instructions
Set padding/margins for a specific table cell.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
bottom | No | ||
col_index | Yes | ||
filename | Yes | ||
left | No | ||
right | No | ||
row_index | Yes | ||
table_index | Yes | ||
top | No | ||
unit | No | points |
Input Schema (JSON Schema)
{
"properties": {
"bottom": {
"default": null,
"title": "Bottom",
"type": "number"
},
"col_index": {
"title": "Col Index",
"type": "integer"
},
"filename": {
"title": "Filename",
"type": "string"
},
"left": {
"default": null,
"title": "Left",
"type": "number"
},
"right": {
"default": null,
"title": "Right",
"type": "number"
},
"row_index": {
"title": "Row Index",
"type": "integer"
},
"table_index": {
"title": "Table Index",
"type": "integer"
},
"top": {
"default": null,
"title": "Top",
"type": "number"
},
"unit": {
"default": "points",
"title": "Unit",
"type": "string"
}
},
"required": [
"filename",
"table_index",
"row_index",
"col_index"
],
"type": "object"
}