Inserts controls at specific index of `page.controls` list.
(self, at: int, *controls: Control)
| 340 | self.update() |
| 341 | |
| 342 | def insert(self, at: int, *controls: Control) -> None: |
| 343 | """ |
| 344 | Inserts controls at specific index of `page.controls` list. |
| 345 | """ |
| 346 | n = at |
| 347 | for c in controls: |
| 348 | self.controls.insert(n, c) |
| 349 | n += 1 |
| 350 | self.update() |
| 351 | |
| 352 | def remove(self, *controls: Control) -> None: |
| 353 | """ |