The URL of the hyperlink. Read/write. URL can be on http, https, mailto, or file scheme; others may work.
(self)
| 434 | |
| 435 | @property |
| 436 | def address(self) -> str | None: |
| 437 | """The URL of the hyperlink. |
| 438 | |
| 439 | Read/write. URL can be on http, https, mailto, or file scheme; others may work. |
| 440 | """ |
| 441 | if self._hlinkClick is None: |
| 442 | return None |
| 443 | return self.part.target_ref(self._hlinkClick.rId) |
| 444 | |
| 445 | @address.setter |
| 446 | def address(self, url: str | None): |
nothing calls this directly
no test coverage detected