BreakType module

class BreakType.BreakType(value)

Bases: Enum

Enum class representing different types of breaks in a document.

PageBreak

Represents a page break.

Type:

int

ColumnBreak

Represents a column break.

Type:

int

LineBreak

Represents a line break.

Type:

int

ColumnBreak = 1
LineBreak = 2
PageBreak = 0