get_cell_text
Extract text from any cell in a Word document table by specifying the zero-based indices for table, row, and column.
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 |