Return boolean flag, ``True`` if artist is included in layout calculations. E.g. :ref:`constrainedlayout_guide`, `.Figure.tight_layout()`, and ``fig.savefig(fname, bbox_inches='tight')``.
(self)
| 901 | return self._animated |
| 902 | |
| 903 | def get_in_layout(self): |
| 904 | """ |
| 905 | Return boolean flag, ``True`` if artist is included in layout |
| 906 | calculations. |
| 907 | |
| 908 | E.g. :ref:`constrainedlayout_guide`, |
| 909 | `.Figure.tight_layout()`, and |
| 910 | ``fig.savefig(fname, bbox_inches='tight')``. |
| 911 | """ |
| 912 | return self._in_layout |
| 913 | |
| 914 | def _get_in_autoscale(self): |
| 915 | """ |
no outgoing calls