insert_table
Add a table to HWPX documents by specifying rows and columns. Supports custom dimensions and placement within document sections for structured content creation.
Instructions
현재 문서에 표를 추가합니다.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cols | Yes | ||
height | No | ||
rows | Yes | ||
section_index | No | ||
width | No |
Input Schema (JSON Schema)
{
"properties": {
"cols": {
"minimum": 1,
"type": "integer"
},
"height": {
"minimum": 1,
"type": "integer"
},
"rows": {
"minimum": 1,
"type": "integer"
},
"section_index": {
"minimum": 0,
"type": "integer"
},
"width": {
"minimum": 1,
"type": "integer"
}
},
"required": [
"rows",
"cols"
],
"type": "object"
}