Files
iofficeai--officecli/schemas/help/xlsx/pagebreak.json
T
wehub-resource-sync 8cb1f9f479
Publish SDK (PyPI) / publish (push) Has been cancelled
Publish SDK (npm) / publish (@aionui/officecli-sdk) (push) Has been cancelled
SDK smoke / smoke (windows-latest) (push) Has been cancelled
Publish SDK (npm) / publish (@officecli/officecli-sdk) (push) Has been cancelled
Publish SDK (npm) / publish (@officecli/sdk) (push) Has been cancelled
Publish SDK (npm) / publish (officecli-sdk) (push) Has been cancelled
SDK smoke / smoke (macos-latest) (push) Has been cancelled
SDK smoke / smoke (ubuntu-latest) (push) Has been cancelled
Skill parity / diff (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:09:29 +08:00

37 lines
1.3 KiB
JSON

{
"$schema": "../_schema.json",
"format": "xlsx",
"element": "pagebreak",
"parent": "sheet",
"operations": {
"add": true,
"set": true,
"get": true,
"query": true,
"remove": true
},
"paths": {
"positional": ["/SheetName/rowbreak[N]", "/SheetName/colbreak[N]"]
},
"note": "Dispatcher: routes to rowbreak or colbreak based on which of 'col'/'column' or 'row' is supplied. See xlsx/rowbreak.json and xlsx/colbreak.json for the resolved surfaces.",
"properties": {
"row": {
"type": "int",
"description": "row index — routes to rowbreak. Add-time only — Set is not supported (re-add to relocate). Get does not surface this back today; use sheet.rowBreaks for the indexed list.",
"add": true, "set": false, "get": false,
"examples": ["--prop row=20"],
"readback": "n/a (see sheet.rowBreaks)",
"enforcement": "report"
},
"col": {
"type": "string",
"description": "column index/letter — routes to colbreak. Alias: column. Add-time only — Set is not supported (re-add to relocate). Get does not surface this back today; use sheet.colBreaks for the indexed list.",
"aliases": ["column"],
"add": true, "set": false, "get": false,
"examples": ["--prop col=F"],
"readback": "n/a (see sheet.colBreaks)",
"enforcement": "report"
}
}
}