PySide6.QtGui.QTextBlockFormat¶
- class QTextBlockFormat¶
- The - QTextBlockFormatclass provides formatting information for blocks of text in a- QTextDocument. More…- Synopsis¶- Methods¶- def - __init__()
- def - alignment()
- def - bottomMargin()
- def - headingLevel()
- def - indent()
- def - leftMargin()
- def - lineHeight()
- def - lineHeightType()
- def - marker()
- def - rightMargin()
- def - setAlignment()
- def - setIndent()
- def - setLeftMargin()
- def - setLineHeight()
- def - setMarker()
- def - setRightMargin()
- def - setTextIndent()
- def - setTopMargin()
- def - tabPositions()
- def - textIndent()
- def - topMargin()
 - Note - This documentation may contain snippets that were automatically translated from C++ to Python. We always welcome contributions to the snippet translation. If you see an issue with the translation, you can also let us know by creating a ticket on https:/bugreports.qt.io/projects/PYSIDE - Detailed Description¶- A document is composed of a list of blocks, represented by - QTextBlockobjects. Each block can contain an item of some kind, such as a paragraph of text, a table, a list, or an image. Every block has an associated- QTextBlockFormatthat specifies its characteristics.- To cater for left-to-right and right-to-left languages you can set a block’s direction with - setLayoutDirection(). Paragraph alignment is set with- setAlignment(). Margins are controlled by- setTopMargin(),- setBottomMargin(),- setLeftMargin(),- setRightMargin(). Overall indentation is set with- setIndent(), the indentation of the first line with- setTextIndent().- Line spacing is set with - setLineHeight()and retrieved via- lineHeight()and- lineHeightType(). The types of line spacing available are in the- LineHeightTypesenum.- Line breaking can be enabled and disabled with - setNonBreakableLines().- The brush used to paint the paragraph’s background is set with - setBackground(), and other aspects of the text’s appearance can be customized by using the- setProperty()function with the- OutlinePen,- ForegroundBrush, and- BackgroundBrush- Propertyvalues.- If a text block is part of a list, it can also have a list format that is accessible with the listFormat() function. - See also - class LineHeightTypes¶
- This enum describes the various types of line spacing support paragraphs can have. - Constant - Description - QTextBlockFormat.SingleHeight - This is the default line height: single spacing. - QTextBlockFormat.ProportionalHeight - This sets the spacing proportional to the line (in percentage). For example, set to 200 for double spacing. - QTextBlockFormat.FixedHeight - This sets the line height to a fixed line height (in pixels). - QTextBlockFormat.MinimumHeight - This sets the minimum line height (in pixels). - QTextBlockFormat.LineDistanceHeight - This adds the specified height between lines (in pixels). - See also - Added in version 4.8. 
 - class MarkerType¶
- This enum describes the types of markers a list item can have. If a list item (a paragraph for which - textList()returns the list) has a marker, it is rendered instead of the normal bullet. In this way, checkable list items can be mixed with plain list items in the same list, overriding the type of bullet specified by the- style()for the entire list.- Constant - Description - QTextBlockFormat.MarkerType.NoMarker - This is the default: the list item’s bullet will be shown. - QTextBlockFormat.MarkerType.Unchecked - Instead of the list item’s bullet, an unchecked checkbox will be shown. - QTextBlockFormat.MarkerType.Checked - Instead of the list item’s bullet, a checked checkbox will be shown. - In the future, this may be extended to specify other types of paragraph decorations. - See also 
 - __init__()¶
 - Constructs a new - QTextBlockFormat.- __init__(fmt)
- Parameters:
- fmt – - QTextFormat
 
 - alignment()¶
- Return type:
- Combination of - AlignmentFlag
 
 - Returns the paragraph’s alignment. - See also - bottomMargin()¶
- Return type:
- float 
 
 - Returns the paragraph’s bottom margin. - See also - headingLevel()¶
- Return type:
- int 
 
 - Returns the paragraph’s heading level if it is a heading, or 0 if not. - See also - indent()¶
- Return type:
- int 
 
 - Returns the paragraph’s indent. - See also - leftMargin()¶
- Return type:
- float 
 
 - Returns the paragraph’s left margin. - See also - lineHeight()¶
- Return type:
- float 
 
 - This returns the LineHeight property for the paragraph. - lineHeight(scriptLineHeight, scaling)
- Parameters:
- scriptLineHeight – float 
- scaling – float 
 
- Return type:
- float 
 
 - Returns the height of the lines in the paragraph based on the height of the script line given by - scriptLineHeightand the specified- scalingfactor.- The value that is returned is also dependent on the given LineHeightType of the paragraph as well as the LineHeight setting that has been set for the paragraph. - The scaling is needed for heights that include a fixed number of pixels, to scale them appropriately for printing. - lineHeightType()¶
- Return type:
- int 
 
 - This returns the LineHeightType property of the paragraph. - See also - marker()¶
- Return type:
 
 - Returns the paragraph’s marker if one has been set, or - NoMarkerif not.- See also - nonBreakableLines()¶
- Return type:
- bool 
 
 - Returns - trueif the lines in the paragraph are non-breakable; otherwise returns- false.- See also - pageBreakPolicy()¶
- Return type:
- Combination of - PageBreakFlag
 
 - Returns the currently set page break policy for the paragraph. The default is - PageBreak_Auto.- See also - rightMargin()¶
- Return type:
- float 
 
 - Returns the paragraph’s right margin. - See also - setAlignment(alignment)¶
- Parameters:
- alignment – Combination of - AlignmentFlag
 
 - Sets the paragraph’s - alignment.- See also - setBottomMargin(margin)¶
- Parameters:
- margin – float 
 
 - Sets the paragraph’s bottom - margin.- setHeadingLevel(alevel)¶
- Parameters:
- alevel – int 
 
 - Sets the paragraph’s heading - level, where 1 is the highest-level heading type (usually with the largest possible heading font size), and increasing values are progressively deeper into the document (and usually with smaller font sizes). For example when reading an HTML H1 tag, the heading level is set to 1. Setting the heading level does not automatically change the font size; however- fromHtml()sets both the heading level and the font size simultaneously.- If the paragraph is not a heading, the level should be set to 0 (the default). - See also - setIndent(indent)¶
- Parameters:
- indent – int 
 
 - Sets the paragraph’s - indentation. Margins are set independently of indentation with- setLeftMargin()and- setTextIndent(). The- indentationis an integer that is multiplied with the document-wide standard indent, resulting in the actual indent of the paragraph.- See also - setLeftMargin(margin)¶
- Parameters:
- margin – float 
 
 - Sets the paragraph’s left - margin. Indentation can be applied separately with- setIndent().- setLineHeight(height, heightType)¶
- Parameters:
- height – float 
- heightType – int 
 
 
 - Sets the line height for the paragraph to the value given by - heightwhich is dependent on- heightTypein the way described by the- LineHeightTypesenum.- See also - setMarker(marker)¶
- Parameters:
- marker – - MarkerType
 
 - Sets the type of adornment that should be rendered alongside the paragraph to - marker. For example, a list item can be adorned with a checkbox, either checked or unchecked, as a replacement for its bullet. The default is- NoMarker.- See also - setNonBreakableLines(b)¶
- Parameters:
- b – bool 
 
 - If - bis true, the lines in the paragraph are treated as non-breakable; otherwise they are breakable.- See also - setPageBreakPolicy(flags)¶
- Parameters:
- flags – Combination of - PageBreakFlag
 
 - Sets the page break policy for the paragraph to - policy.- See also - setRightMargin(margin)¶
- Parameters:
- margin – float 
 
 - Sets the paragraph’s right - margin.- setTabPositions(tabs)¶
- Parameters:
- tabs – .list of QTextOption.Tab 
 
 - Sets the tab positions for the text block to those specified by - tabs.- See also - setTextIndent(aindent)¶
- Parameters:
- aindent – float 
 
 - Sets the - indentfor the first line in the block. This allows the first line of a paragraph to be indented differently to the other lines, enhancing the readability of the text.- setTopMargin(margin)¶
- Parameters:
- margin – float 
 
 - Sets the paragraph’s top - margin.- tabPositions()¶
- Return type:
- .list of QTextOption.Tab 
 
 - Returns a list of tab positions defined for the text block. - See also - textIndent()¶
- Return type:
- float 
 
 - Returns the paragraph’s text indent. - See also - topMargin()¶
- Return type:
- float 
 
 - Returns the paragraph’s top margin. - See also