MCPcopy Index your code
hub / github.com/PyQt5/PyQt / itemAt

Method itemAt

QFlowLayout/Lib/flowlayout.py:91–95  ·  view source on GitHub ↗
(self, index)

Source from the content-addressed store, hash-verified

89 return len(self.itemList)
90
91 def itemAt(self, index):
92 if index >= 0 and index < len(self.itemList):
93 return self.itemList[index]
94
95 return None
96
97 def takeAt(self, index):
98 if index >= 0 and index < len(self.itemList):

Callers 3

mousePressEventMethod · 0.80
restoreMethod · 0.80
mousePressEventMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected