Return whether `.Figure.tight_layout` is called when drawing.
(self)
| 2885 | dpi = property(_get_dpi, _set_dpi, doc="The resolution in dots per inch.") |
| 2886 | |
| 2887 | def get_tight_layout(self): |
| 2888 | """Return whether `.Figure.tight_layout` is called when drawing.""" |
| 2889 | return isinstance(self.get_layout_engine(), TightLayoutEngine) |
| 2890 | |
| 2891 | @_api.deprecated("3.6", alternative="set_layout_engine", |
| 2892 | pending=True) |