Page rotation.
(self)
| 12855 | |
| 12856 | @property |
| 12857 | def rotation(self): |
| 12858 | """Page rotation.""" |
| 12859 | CheckParent(self) |
| 12860 | page = _as_pdf_page(self.this, required=0) |
| 12861 | if not page.m_internal: |
| 12862 | return 0 |
| 12863 | return JM_page_rotation(page) |
| 12864 | |
| 12865 | @property |
| 12866 | def rotation_matrix(self) -> Matrix: |
nothing calls this directly
no test coverage detected