QTextFragment¶
The
QTextFragment
class holds a piece of text in aQTextDocument
with a singleQTextCharFormat
. More…
Synopsis¶
Functions¶
def
__eq__
(o)def
__lt__
(o)def
__ne__
(o)def
charFormat
()def
charFormatIndex
()def
contains
(position)def
isValid
()def
length
()def
position
()def
text
()
Detailed Description¶
A text fragment describes a piece of text that is stored with a single character format. Text in which the character format changes can be represented by sequences of text fragments with different formats.
If the user edits the text in a fragment and introduces a different character format, the fragment’s text will be split at each point where the format changes, and new fragments will be created. For example, changing the style of some text in the middle of a sentence will cause the fragment to be broken into three separate fragments: the first and third with the same format as before, and the second with the new style. The first fragment will contain the text from the beginning of the sentence, the second will contain the text from the middle, and the third takes the text from the end of the sentence.
A fragment’s text and character format can be obtained with the
text()
andcharFormat()
functions. Thelength()
function gives the length of the text in the fragment.position()
gives the position in the document of the start of the fragment. To determine whether the fragment contains a particular position within the document, use thecontains()
function.
- class PySide2.QtGui.QTextFragment¶
PySide2.QtGui.QTextFragment(o)
- param o:
Creates a new empty text fragment.
Copies the content (text and format) of the
other
text fragment to this text fragment.
- PySide2.QtGui.QTextFragment.charFormat()¶
- Return type:
Returns the text fragment’s character format.
See also
- PySide2.QtGui.QTextFragment.charFormatIndex()¶
- Return type:
int
Returns an index into the document’s internal list of character formats for the text fragment’s character format.
See also
- PySide2.QtGui.QTextFragment.contains(position)¶
- Parameters:
position – int
- Return type:
bool
Returns
true
if the text fragment contains the text at the givenposition
in the document; otherwise returnsfalse
.
- PySide2.QtGui.QTextFragment.isValid()¶
- Return type:
bool
Returns
true
if this is a valid text fragment (i.e. has a valid position in a document); otherwise returnsfalse
.
- PySide2.QtGui.QTextFragment.length()¶
- Return type:
int
Returns the number of characters in the text fragment.
See also
- PySide2.QtGui.QTextFragment.__ne__(o)¶
- Parameters:
- Return type:
bool
Returns
true
if this text fragment is different (at a different position) from theother
text fragment; otherwise returns false.
- PySide2.QtGui.QTextFragment.__lt__(o)¶
- Parameters:
- Return type:
bool
- PySide2.QtGui.QTextFragment.__eq__(o)¶
- Parameters:
- Return type:
bool
Returns
true
if this text fragment is the same (at the same position) as theother
text fragment; otherwise returnsfalse
.
- PySide2.QtGui.QTextFragment.position()¶
- Return type:
int
Returns the position of this text fragment in the document.
- PySide2.QtGui.QTextFragment.text()¶
- Return type:
str
Returns the text fragment’s as plain text.
See also
© 2022 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.