Removes specific controls from `page.controls` list.
(self, *controls: Control)
| 350 | self.update() |
| 351 | |
| 352 | def remove(self, *controls: Control) -> None: |
| 353 | """ |
| 354 | Removes specific controls from `page.controls` list. |
| 355 | """ |
| 356 | for c in controls: |
| 357 | self.controls.remove(c) |
| 358 | self.update() |
| 359 | |
| 360 | def remove_at(self, index: int) -> None: |
| 361 | """ |
no test coverage detected