Skip to content

word break add

zmworm edited this page Apr 29, 2026 · 50 revisions

Word: Break - add

Insert page breaks, column breaks, and text-wrapping breaks.

Type: pagebreak/break, also columnbreak

Parent: /body/p[N] or /body

Properties

Property Default Description
type page Break type: page, column, textwrapping/line

Examples

# 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=line

Based on OfficeCLI v1.0.64

Clone this wiki locally