Set the properties of the selector artist. See the *props* argument in the selector docstring to know which properties are supported.
(self, **props)
| 2601 | return (self._selection_artist,) + handles_artists |
| 2602 | |
| 2603 | def set_props(self, **props): |
| 2604 | """ |
| 2605 | Set the properties of the selector artist. |
| 2606 | |
| 2607 | See the *props* argument in the selector docstring to know which properties are |
| 2608 | supported. |
| 2609 | """ |
| 2610 | artist = self._selection_artist |
| 2611 | props = cbook.normalize_kwargs(props, artist) |
| 2612 | artist.set(**props) |
| 2613 | if self.useblit: |
| 2614 | self.update() |
| 2615 | |
| 2616 | def set_handle_props(self, **handle_props): |
| 2617 | """ |