> ## Documentation Index
> Fetch the complete documentation index at: https://superdoc-caio-pizzol-docs-ai-core-preset.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# tables.setCellProperties

> Set non-text properties on a single table cell: vertical alignment, text wrapping, fit-text, or preferred width. Requires a cell-level target (a tableCell block address with kind, nodeType, nodeId). Does NOT accept a table target with rowIndex/columnIndex. To set the text content of a cell, use action "set_cell_text" instead.

## Summary

Set non-text properties on a single table cell: vertical alignment, text wrapping, fit-text, or preferred width. Requires a cell-level target (a tableCell block address with kind, nodeType, nodeId). Does NOT accept a table target with rowIndex/columnIndex. To set the text content of a cell, use action "set\_cell\_text" instead.

* Operation ID: `tables.setCellProperties`
* API member path: `editor.doc.tables.setCellProperties(...)`
* Mutates document: `yes`
* Idempotency: `idempotent`
* Supports tracked mode: `no`
* Supports dry run: `yes`
* Deterministic target resolution: `yes`

## Expected result

Returns a TableMutationResult receipt; reports NO\_OP if cell properties already match.

## Input fields

### Variant 1 (target.nodeType="tableCell")

| Field              | Type             | Required | Description                     |
| ------------------ | ---------------- | -------- | ------------------------------- |
| `fitText`          | boolean          | no       |                                 |
| `preferredWidthPt` | number           | no       |                                 |
| `target`           | TableCellAddress | yes      | TableCellAddress                |
| `target.kind`      | `"block"`        | yes      | Constant: `"block"`             |
| `target.nodeId`    | string           | yes      |                                 |
| `target.nodeType`  | `"tableCell"`    | yes      | Constant: `"tableCell"`         |
| `verticalAlign`    | enum             | no       | `"top"`, `"center"`, `"bottom"` |
| `wrapText`         | boolean          | no       |                                 |

### Variant 2 (required: nodeId)

| Field              | Type    | Required | Description                     |
| ------------------ | ------- | -------- | ------------------------------- |
| `fitText`          | boolean | no       |                                 |
| `nodeId`           | string  | yes      |                                 |
| `preferredWidthPt` | number  | no       |                                 |
| `verticalAlign`    | enum    | no       | `"top"`, `"center"`, `"bottom"` |
| `wrapText`         | boolean | no       |                                 |

### Example request

```json theme={null}
{
  "preferredWidthPt": 12.5,
  "target": {
    "kind": "block",
    "nodeId": "node-def456",
    "nodeType": "tableCell"
  },
  "verticalAlign": "top"
}
```

## Output fields

### Variant 1 (success=true)

| Field               | Type             | Required | Description         |
| ------------------- | ---------------- | -------- | ------------------- |
| `success`           | `true`           | yes      | Constant: `true`    |
| `table`             | TableAddress     | no       | TableAddress        |
| `table.kind`        | `"block"`        | no       | Constant: `"block"` |
| `table.nodeId`      | string           | no       |                     |
| `table.nodeType`    | `"table"`        | no       | Constant: `"table"` |
| `trackedChangeRefs` | EntityAddress\[] | no       |                     |

### Variant 2 (success=false)

| Field             | Type    | Required | Description                                                                     |
| ----------------- | ------- | -------- | ------------------------------------------------------------------------------- |
| `failure`         | object  | yes      |                                                                                 |
| `failure.code`    | enum    | yes      | `"NO_OP"`, `"INVALID_TARGET"`, `"TARGET_NOT_FOUND"`, `"CAPABILITY_UNAVAILABLE"` |
| `failure.details` | any     | no       |                                                                                 |
| `failure.message` | string  | yes      |                                                                                 |
| `success`         | `false` | yes      | Constant: `false`                                                               |

<Tip>
  When present, `result.table` is the follow-up address to reuse after this call. For non-destructive table-targeted mutations, pass `result.table.nodeId` to the next table operation instead of re-running `find()`. Destructive operations may omit `table`.
</Tip>

### Example response

```json theme={null}
{
  "success": true,
  "table": {
    "kind": "block",
    "nodeId": "node-def456",
    "nodeType": "table"
  },
  "trackedChangeRefs": [
    {
      "entityId": "entity-789",
      "entityType": "comment",
      "kind": "entity"
    }
  ]
}
```

## Pre-apply throws

* `TARGET_NOT_FOUND`
* `INVALID_TARGET`
* `CAPABILITY_UNAVAILABLE`

## Non-applied failure codes

* `INVALID_TARGET`
* `NO_OP`

## Raw schemas

<Accordion title="Raw input schema">
  ```json theme={null}
  {
    "additionalProperties": false,
    "oneOf": [
      {
        "required": [
          "target"
        ]
      },
      {
        "required": [
          "nodeId"
        ]
      }
    ],
    "properties": {
      "fitText": {
        "type": "boolean"
      },
      "nodeId": {
        "type": "string"
      },
      "preferredWidthPt": {
        "type": "number"
      },
      "target": {
        "$ref": "#/$defs/TableCellAddress"
      },
      "verticalAlign": {
        "enum": [
          "top",
          "center",
          "bottom"
        ]
      },
      "wrapText": {
        "type": "boolean"
      }
    },
    "type": "object"
  }
  ```
</Accordion>

<Accordion title="Raw output schema">
  ```json theme={null}
  {
    "oneOf": [
      {
        "additionalProperties": false,
        "properties": {
          "success": {
            "const": true
          },
          "table": {
            "$ref": "#/$defs/TableAddress"
          },
          "trackedChangeRefs": {
            "items": {
              "$ref": "#/$defs/EntityAddress"
            },
            "type": "array"
          }
        },
        "required": [
          "success"
        ],
        "type": "object"
      },
      {
        "additionalProperties": false,
        "properties": {
          "failure": {
            "additionalProperties": false,
            "properties": {
              "code": {
                "enum": [
                  "NO_OP",
                  "INVALID_TARGET",
                  "TARGET_NOT_FOUND",
                  "CAPABILITY_UNAVAILABLE"
                ]
              },
              "details": {},
              "message": {
                "type": "string"
              }
            },
            "required": [
              "code",
              "message"
            ],
            "type": "object"
          },
          "success": {
            "const": false
          }
        },
        "required": [
          "success",
          "failure"
        ],
        "type": "object"
      }
    ]
  }
  ```
</Accordion>

<Accordion title="Raw success schema">
  ```json theme={null}
  {
    "additionalProperties": false,
    "properties": {
      "success": {
        "const": true
      },
      "table": {
        "$ref": "#/$defs/TableAddress"
      },
      "trackedChangeRefs": {
        "items": {
          "$ref": "#/$defs/EntityAddress"
        },
        "type": "array"
      }
    },
    "required": [
      "success"
    ],
    "type": "object"
  }
  ```
</Accordion>

<Accordion title="Raw failure schema">
  ```json theme={null}
  {
    "additionalProperties": false,
    "properties": {
      "failure": {
        "additionalProperties": false,
        "properties": {
          "code": {
            "enum": [
              "NO_OP",
              "INVALID_TARGET",
              "TARGET_NOT_FOUND",
              "CAPABILITY_UNAVAILABLE"
            ]
          },
          "details": {},
          "message": {
            "type": "string"
          }
        },
        "required": [
          "code",
          "message"
        ],
        "type": "object"
      },
      "success": {
        "const": false
      }
    },
    "required": [
      "success",
      "failure"
    ],
    "type": "object"
  }
  ```
</Accordion>
