QTextFrameclass represents a frame in aQTextDocument. 更多 …
继承者: QTextTable
def
__iter__
()
def
begin
()
def
childFrames
()
def
end
()
def
firstCursorPosition
()
def
firstPosition
()
def
frameFormat
()
def
lastCursorPosition
()
def
lastPosition
()
def
parentFrame
()
def
setFrameFormat
(format)
Text frames provide structure for the text in a document. They are used as generic containers for other document elements. Frames are usually created by using
insertFrame().Frames can be used to create hierarchical structures in rich text documents. Each document has a root frame (
rootFrame()), and each frame beneath the root frame has a parent frame and a (possibly empty) list of child frames. The parent frame can be found withparentFrame(),和childFrames()function provides a list of child frames.Each frame contains at least one text block to enable text cursors to insert new document elements within. As a result, the
iteratorclass is used to traverse both the blocks and child frames within a given frame. The first and last child elements in the frame can be found withbegin()andend().A frame also has a format (specified using
QTextFrameFormat) which can be set withsetFormat()and read withformat().Text cursors can be obtained that point to the first and last valid cursor positions within a frame; use the
firstCursorPosition()andlastCursorPosition()functions for this. The frame’s extent in the document can be found withfirstPosition()andlastPosition().You can iterate over a frame’s contents using the
iteratorclass: this provides read-only access to its internal list of text blocks and child frames.另请参阅
QTextFrame
(
doc
)
¶
- param doc
Creates a new empty frame for the text
document
.
PySide2.QtGui.QTextFrame.
__iter__
(
)
¶
PyObject
PySide2.QtGui.QTextFrame.
begin
(
)
¶
Returns an iterator pointing to the first document element inside the frame. Please see the document STL-style-Iterators 了解更多信息。
另请参阅
PySide2.QtGui.QTextFrame.
childFrames
(
)
¶
Returns a (possibly empty) list of the frame’s child frames.
另请参阅
PySide2.QtGui.QTextFrame.
end
(
)
¶
Returns an iterator pointing to the position past the last document element inside the frame. Please see the document STL 样式迭代器 了解更多信息。
另请参阅
PySide2.QtGui.QTextFrame.
firstCursorPosition
(
)
¶
Returns the first cursor position inside the frame.
PySide2.QtGui.QTextFrame.
firstPosition
(
)
¶
int
Returns the first document position inside the frame.
PySide2.QtGui.QTextFrame.
frameFormat
(
)
¶
Returns the frame’s format.
另请参阅
PySide2.QtGui.QTextFrame.
lastCursorPosition
(
)
¶
Returns the last cursor position inside the frame.
PySide2.QtGui.QTextFrame.
lastPosition
(
)
¶
int
Returns the last document position inside the frame.
PySide2.QtGui.QTextFrame.
parentFrame
(
)
¶
Returns the frame’s parent frame. If the frame is the root frame of a document, this will return 0.
另请参阅
PySide2.QtGui.QTextFrame.
setFrameFormat
(
format
)
¶
format
–
QTextFrameFormat
Sets the frame’s
format
.
另请参阅