Return the last x-offset for line y
(self, y: int)
| 467 | return p |
| 468 | |
| 469 | def max_column(self, y: int) -> int: |
| 470 | """Return the last x-offset for line y""" |
| 471 | return self.screeninfo[y][0] + sum(self.screeninfo[y][1]) |
| 472 | |
| 473 | def max_row(self) -> int: |
| 474 | return len(self.screeninfo) - 1 |