QTextOption¶
- PyQt5.QtGui.QTextOption
Description¶
The QTextOption class provides a description of general rich text properties.
QTextOption is used to encapsulate common rich text properties in a single object. It contains information about text alignment, layout direction, word wrapping, and other standard properties associated with text rendering and layout.
See also
Enums¶
- Flag
Member
Value
Description
AddSpaceForLineAndParagraphSeparators 0x4
While determining the line-break positions take into account the space added for drawing a separator character.
IncludeTrailingSpaces 0x80000000
When this option is set, naturalTextWidth() and naturalTextRect() will return a value that includes the width of trailing spaces in the text; otherwise this width is excluded.
ShowDocumentTerminator TODO
Visualize the end of the document with a section sign. This enum value was added in Qt 5.7.
ShowLineAndParagraphSeparators 0x2
Visualize line and paragraph separators with appropriate symbol characters.
ShowTabsAndSpaces 0x1
Visualize spaces with little dots, and tabs with little arrows. Non-breaking spaces are shown differently to breaking spaces.
SuppressColors 0x8
Suppress all color changes in the character formats (except the main selection).
- TabType
This enum holds the different types of tabulator
Member
Value
Description
CenterTab 2
A centered-tab
DelimiterTab 3
A tab stopping at a certain delimiter-character
LeftTab 0
A left-tab
RightTab 1
A right-tab
- WrapMode
This enum describes how text is wrapped in a document.
Member
Value
Description
ManualWrap 2
Same as
NoWrap 0
Text is not wrapped at all.
WordWrap 1
Text is wrapped at word boundaries.
WrapAnywhere 3
Text can be wrapped at any point on a line, even if it occurs in the middle of a word.
WrapAtWordBoundaryOrAnywhere 4
If possible, wrapping occurs at a word boundary; otherwise it will occur at the appropriate point on the line, even in the middle of a word.
Methods¶
- __init__()
Constructs a text option with default properties for text. The text alignment property is set to AlignLeft. The word wrap property is set to WordWrap. The using of design metrics flag is set to false.
- __init__(Union[Alignment, AlignmentFlag])
Constructs a text option with the given alignment for text. The word wrap property is set to WordWrap. The using of design metrics flag is set to false.
- __init__(QTextOption)
TODO
- alignment() → Alignment
See also
- flags() → Flags
See also
- setAlignment(Union[Alignment, AlignmentFlag])
See also
- setTabArray(Iterable[float])
TODO
- setTabs(Iterable[Tab])
TODO
- setTabStop(float)
See also
- setTabStopDistance(float)
TODO
- setTextDirection(LayoutDirection)
See also
- setUseDesignMetrics(bool)
See also
- setWrapMode(WrapMode)
See also
- tabArray() → List[float]
Returns a list of tab positions defined for the text layout.
See also
- tabStop() → float
See also
- tabStopDistance() → float
TODO
- textDirection() → LayoutDirection
See also
- useDesignMetrics() → bool
See also
- wrapMode() → WrapMode
See also