Return whether constrained layout is being used. See :ref:`constrainedlayout_guide`.
(self)
| 2364 | self.bbox_relative.p1 = (x0 + dx, y0 + dy) |
| 2365 | |
| 2366 | def get_constrained_layout(self): |
| 2367 | """ |
| 2368 | Return whether constrained layout is being used. |
| 2369 | |
| 2370 | See :ref:`constrainedlayout_guide`. |
| 2371 | """ |
| 2372 | return self._parent.get_constrained_layout() |
| 2373 | |
| 2374 | def get_constrained_layout_pads(self, relative=False): |
| 2375 | """ |
nothing calls this directly
no test coverage detected