Set the overlay's horizontal position relative to its anchor.
(mut self, horizontal: Horizontal)
| 88 | |
| 89 | /// Set the overlay's horizontal position relative to its anchor. |
| 90 | pub fn align_to_anchor_horizontal(mut self, horizontal: Horizontal) -> Self { |
| 91 | self.align_to_anchor_horizontal = horizontal; |
| 92 | self |
| 93 | } |
| 94 | |
| 95 | /// Set the overlay's vertical position relative to its anchor. |
| 96 | pub fn align_to_anchor_vertical(mut self, vertical: Vertical) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected