Return the last x-offset for line y
(self, y: int)
| 517 | return p |
| 518 | |
| 519 | def max_column(self, y: int) -> int: |
| 520 | """Return the last x-offset for line y""" |
| 521 | return self.screeninfo[y][0] + sum(self.screeninfo[y][1]) |
| 522 | |
| 523 | def max_row(self) -> int: |
| 524 | return len(self.screeninfo) - 1 |