get_cell_text
Retrieve text content from a specific cell in a Word document table by providing table, row, and column indices.
Instructions
Return text content of a specific cell.
Args: table_idx: 0-based table index. row_idx: 0-based row index. col_idx: 0-based column index.
Returns: {"table_index": int, "row_index": int, "col_index": int, "text": str}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| table_idx | Yes | ||
| row_idx | Yes | ||
| col_idx | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |