delete a value from a specific block [row, column]
(self, row, column, **kwargs)
| 553 | self.update_data() |
| 554 | |
| 555 | def delete(self, row, column, **kwargs): |
| 556 | """ delete a value from a specific block [row, column] """ |
| 557 | if self.write: |
| 558 | self.frame[row,column].delete(0, customtkinter.END) |
| 559 | self.frame[row,column].configure(**kwargs) |
| 560 | else: |
| 561 | self.frame[row,column].configure(require_redraw=True, text="", **kwargs) |
| 562 | if kwargs: self.data[row,column]["args"].update(kwargs) |
| 563 | self.update_data() |
| 564 | |
| 565 | def get(self, row=None, column=None): |
| 566 | """ get the required cell """ |
no test coverage detected