-
Notifications
You must be signed in to change notification settings - Fork 517
word break add
zmworm edited this page Apr 29, 2026
·
50 revisions
Insert page breaks, column breaks, and text-wrapping breaks.
Type: pagebreak/break, also columnbreak
Parent: /body/p[N] or /body
| Property | Default | Description |
|---|---|---|
type |
page |
Break type: page, column, textwrapping/line
|
# Insert a page break
officecli add report.docx /body/p[3] --type pagebreak
# Insert a page break at body level (creates paragraph with break)
officecli add report.docx /body --type break --prop type=page
# Insert a column break
officecli add report.docx /body/p[5] --type columnbreak
# Insert a column break using type property
officecli add report.docx /body/p[5] --type break --prop type=column
# Insert a text-wrapping (line) break
officecli add report.docx /body/p[2] --type break --prop type=lineBased on OfficeCLI v1.0.64