wps_et_read_range
Read cell values from a WPS Excel spreadsheet as a 2D array (value[r][c]). Supports single cells, ranges like "A1:B3", or the current selection.
Instructions
读取单元格值。统一返回二维数组:value[r][c] 直接取行列(第 1 行第 1 列为 value[0][0])。cell 为单格(如 "A1")时返回 [[值]] 的单元素数组,为区域(如 "A1:B3")时按行返回。不传 cell 则读当前选中,返回 {address, value} 结构。
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cell | No | 单元格地址。单格 A1 或区域 A1:B3,统一返回二维数组 value[r][c] |