QTextCharFormat¶
- PyQt5.QtGui.QTextCharFormat
Inherits from QTextFormat.
Inherited by QTextImageFormat, QTextTableCellFormat.
Description¶
The QTextCharFormat class provides formatting information for characters in a QTextDocument.
The character format of text in a document specifies the visual properties of the text, as well as information about its role in a hypertext document.
The font used can be set by supplying a font to the setFont() function, and each aspect of its appearance can be adjusted to give the desired effect. setFontFamily() and setFontPointSize() define the font’s family (e.g. Times) and printed size; setFontWeight() and setFontItalic() provide control over the style of the font. setFontUnderline(), setFontOverline(), setFontStrikeOut(), and setFontFixedPitch() provide additional effects for text.
The color is set with setForeground(). If the text is intended to be used as an anchor (for hyperlinks), this can be enabled with setAnchor(). The setAnchorHref() and setAnchorNames() functions are used to specify the information about the hyperlink’s destination and the anchor’s name.
See also
QTextFormat, QTextBlockFormat, QTextTableFormat, QTextListFormat.
Enums¶
- FontPropertiesInheritanceBehavior
TODO
Member
Value
Description
FontPropertiesAll TODO
TODO
FontPropertiesSpecifiedOnly TODO
TODO
- UnderlineStyle
This enum describes the different ways drawing underlined text.
See also
Member
Value
Description
DashDotDotLine 5
Underlines draw drawn using DashDotDotLine.
DashDotLine 4
Dashs and dots are drawn using DashDotLine.
DashUnderline 2
Dashes are drawn using DashLine.
DotLine 3
Dots are drawn using DotLine;
NoUnderline 0
Text is draw without any underlining decoration.
SingleUnderline 1
A line is drawn using SolidLine.
SpellCheckUnderline 7
The underline is drawn depending on the SpellCheckUnderlineStyle theme hint of QPlatformTheme. By default this is mapped to , on macOS it is mapped to .
WaveUnderline 6
The text is underlined using a wave shaped line.
- VerticalAlignment
This enum describes the ways that adjacent characters can be vertically aligned.
Member
Value
Description
AlignBaseline 6
The base lines of the characters are aligned.
AlignBottom 5
The bottom edge of the object is vertically aligned with the base line.
AlignMiddle 3
The center of the object is vertically aligned with the base line. Currently, this is only implemented for inline objects.
AlignNormal 0
Adjacent characters are positioned in the standard way for text in the writing system in use.
AlignSubScript 2
Characters are placed below the base line for normal text.
AlignSuperScript 1
Characters are placed above the base line for normal text.
AlignTop 4
The top edge of the object is vertically aligned with the base line.
Methods¶
- __init__()
TODO
- __init__(QTextCharFormat)
TODO
- anchorHref() → str
See also
- anchorNames() → List[str]
See also
- fontCapitalization() → Capitalization
See also
- fontFamilies() → Any
TODO
- fontFamily() → str
See also
- fontFixedPitch() → bool
See also
- fontHintingPreference() → HintingPreference
See also
- fontItalic() → bool
See also
- fontKerning() → bool
See also
- fontLetterSpacing() → float
See also
- fontLetterSpacingType() → SpacingType
TODO
- fontOverline() → bool
See also
- fontPointSize() → float
See also
- fontStretch() → int
TODO
- fontStrikeOut() → bool
See also
- fontStyleHint() → StyleHint
See also
- fontStyleName() → Any
TODO
- fontStyleStrategy() → StyleStrategy
See also
- fontUnderline() → bool
See also
- fontWeight() → int
See also
- fontWordSpacing() → float
See also
- isAnchor() → bool
TODO
- isValid() → bool
TODO
- setAnchor(bool)
See also
- setAnchorHref(str)
See also
- setAnchorNames(Iterable[str])
See also
- setFont(QFont, FontPropertiesInheritanceBehavior)
TODO
- setFontCapitalization(Capitalization)
See also
- setFontFamilies(Iterable[str])
TODO
- setFontFamily(str)
See also
- setFontFixedPitch(bool)
See also
- setFontHintingPreference(HintingPreference)
See also
- setFontItalic(bool)
See also
- setFontKerning(bool)
See also
- setFontLetterSpacing(float)
See also
- setFontLetterSpacingType(SpacingType)
TODO
- setFontOverline(bool)
See also
- setFontPointSize(float)
See also
- setFontStretch(int)
TODO
- setFontStrikeOut(bool)
See also
- setFontStyleHint(StyleHint, strategy: StyleStrategy = PreferDefault)
See also
- setFontStyleName(str)
TODO
- setFontStyleStrategy(StyleStrategy)
See also
- setFontUnderline(bool)
See also
- setFontWeight(int)
See also
- setFontWordSpacing(float)
See also
- setTableCellColumnSpan(int)
See also
- setTableCellRowSpan(int)
See also
- setTextOutline(Union[QPen, QColor, GlobalColor, QGradient])
See also
- setToolTip(str)
See also
- setUnderlineColor(Union[QColor, GlobalColor, QGradient])
See also
- setUnderlineStyle(UnderlineStyle)
See also
- setVerticalAlignment(VerticalAlignment)
See also
- tableCellColumnSpan() → int
See also
- tableCellRowSpan() → int
See also
- textOutline() → QPen
See also
- toolTip() → str
See also
- underlineColor() → QColor
See also
- underlineStyle() → UnderlineStyle
See also
- verticalAlignment() → VerticalAlignment
See also