Return the current number of pages in the multipage pdf file.
(self)
| 2698 | figure.savefig(self, format="pdf", backend="pdf", **kwargs) |
| 2699 | |
| 2700 | def get_pagecount(self): |
| 2701 | """Return the current number of pages in the multipage pdf file.""" |
| 2702 | return len(self._ensure_file().pageList) |
| 2703 | |
| 2704 | def attach_note(self, text, positionRect=[-100, -100, 0, 0]): |
| 2705 | """ |
nothing calls this directly
no test coverage detected