QTextInlineObject¶
- PyQt5.QtGui.QTextInlineObject
Description¶
The QTextInlineObject class represents an inline object in a QAbstractTextDocumentLayout and its implementations.
Normally, you do not need to create a QTextInlineObject. It is used by QAbstractTextDocumentLayout to handle inline objects when implementing a custom layout.
The inline object has various attributes that can be set, for example using, setWidth(), setAscent(), and setDescent(). The rectangle it occupies is given by rect(), and its direction by textDirection(). Its position in the text layout is given by textPosition(), and its format is given by format().
Methods¶
- __init__()
TODO
- __init__(QTextInlineObject)
TODO
- ascent() → float
Returns the inline object’s ascent.
See also
- descent() → float
Returns the inline object’s descent.
See also
- format() → QTextFormat
Returns format of the inline object within the text layout.
- formatIndex() → int
Returns an integer describing the format of the inline object within the text layout.
- height() → float
Returns the inline object’s total height. This is equal to ascent() + descent() + 1.
- isValid() → bool
TODO
- rect() → QRectF
Returns the inline object’s rectangle.
- setAscent(float)
Sets the inline object’s ascent to a.
See also
- setDescent(float)
Sets the inline object’s descent to d.
See also
- setWidth(float)
Sets the inline object’s width to w.
- textDirection() → LayoutDirection
Returns if the object should be laid out right-to-left or left-to-right.
- textPosition() → int
The position of the inline object within the text layout.
- width() → float
Returns the inline object’s width.
See also