QItemSelectionRange

PyQt5.QtCore.QItemSelectionRange

Description

The QItemSelectionRange class manages information about a range of selected items in a model.

A QItemSelectionRange contains information about a range of selected items in a model. A range of items is a contiguous array of model items, extending to cover a number of adjacent rows and columns with a common parent item; this can be visualized as a two-dimensional block of cells in a table. A selection range has a top(), left() a bottom(), right() and a .

The QItemSelectionRange class is one of the Model/View Classes and is part of Qt鈥檚 model/view framework.

The model items contained in the selection range can be obtained using the indexes() function. Use selectedIndexes() to get a list of all selected items for a view.

You can determine whether a given model item lies within a particular range by using the function. Ranges can also be compared using the overloaded operators for equality and inequality, and the intersects() function allows you to determine whether two ranges overlap.

Methods

__init__()

TODO


__init__(QItemSelectionRange)

TODO


__init__(QModelIndex)

TODO


__init__(QModelIndex, QModelIndex)

TODO


bottom() → int

TODO


bottomRight() → QPersistentModelIndex

TODO


contains(QModelIndex) → bool

TODO


contains(int, int, QModelIndex) → bool

TODO


__eq__(QItemSelectionRange) → bool

TODO


__ge__(QItemSelectionRange) → bool

TODO


__hash__() → int

TODO


height() → int

TODO


indexes() → List[QModelIndex]

Returns the list of model index items stored in the selection.


intersected(QItemSelectionRange) → QItemSelectionRange

TODO


intersects(QItemSelectionRange) → bool

TODO


isEmpty() → bool

Returns true if the selection range contains no selectable item


isValid() → bool

TODO


left() → int

TODO


__lt__(QItemSelectionRange) → bool

TODO


model() → QAbstractItemModel

TODO


__ne__(QItemSelectionRange) → bool

TODO


parent() → QModelIndex

TODO


TODO


swap(QItemSelectionRange)

TODO


top() → int

TODO


topLeft() → QPersistentModelIndex

TODO


width() → int

TODO