Set properties of the check button frames. .. versionadded:: 3.7 Parameters ---------- props : dict Dictionary of `.Collection` properties to be used for the check button frames.
(self, props)
| 1358 | self._init_status(actives) |
| 1359 | |
| 1360 | def set_frame_props(self, props): |
| 1361 | """ |
| 1362 | Set properties of the check button frames. |
| 1363 | |
| 1364 | .. versionadded:: 3.7 |
| 1365 | |
| 1366 | Parameters |
| 1367 | ---------- |
| 1368 | props : dict |
| 1369 | Dictionary of `.Collection` properties to be used for the check |
| 1370 | button frames. |
| 1371 | """ |
| 1372 | _api.check_isinstance(dict, props=props) |
| 1373 | if 's' in props: # Keep API consistent with constructor. |
| 1374 | props['sizes'] = np.broadcast_to(props.pop('s'), len(self.labels)) |
| 1375 | self._frames.update(props) |
| 1376 | |
| 1377 | def set_check_props(self, props): |
| 1378 | """ |