RowChanged tells any Tables associated with m that the data in the row at index has changed. You do not need to call this in your SetCellValue handlers, but you do need to call this if your data changes at some other point.
(index int)
| 213 | // your SetCellValue handlers, but you do need to call this if your |
| 214 | // data changes at some other point. |
| 215 | func (m *TableModel) RowChanged(index int) { |
| 216 | C.uiTableModelRowChanged(m.m, C.int(index)) |
| 217 | } |
| 218 | |
| 219 | // RowDeleted tells any Tables associated with m that the row at |
| 220 | // index index has been deleted. You call this function when the |