Get the offset accepts extent of the box
(self, width, height, xdescent, ydescent, renderer)
| 194 | self.stale = True |
| 195 | |
| 196 | def get_offset(self, width, height, xdescent, ydescent, renderer): |
| 197 | """ |
| 198 | Get the offset |
| 199 | |
| 200 | accepts extent of the box |
| 201 | """ |
| 202 | return (self._offset(width, height, xdescent, ydescent, renderer) |
| 203 | if callable(self._offset) |
| 204 | else self._offset) |
| 205 | |
| 206 | def set_width(self, width): |
| 207 | """ |
no test coverage detected