Add a 'StrikeOut' annotation.
(self, quads=None, start=None, stop=None, clip=None)
| 10577 | return annot |
| 10578 | |
| 10579 | def add_strikeout_annot(self, quads=None, start=None, stop=None, clip=None) -> Annot: |
| 10580 | """Add a 'StrikeOut' annotation.""" |
| 10581 | if quads is None: |
| 10582 | q = get_highlight_selection(self, start=start, stop=stop, clip=clip) |
| 10583 | else: |
| 10584 | q = CheckMarkerArg(quads) |
| 10585 | return self._add_text_marker(q, mupdf.PDF_ANNOT_STRIKE_OUT) |
| 10586 | |
| 10587 | def add_text_annot(self, point: point_like, text: str, icon: str ="Note") -> Annot: |
| 10588 | """Add a 'Text' (sticky note) annotation.""" |