RowInserted tells any Tables associated with m that a new row has been added to m at index index. You call this method when the number of rows in your model has changed; after calling it, NumRows should returm the new row count.
(index int)
| 205 | // the number of rows in your model has changed; after calling it, |
| 206 | // NumRows should returm the new row count. |
| 207 | func (m *TableModel) RowInserted(index int) { |
| 208 | C.uiTableModelRowInserted(m.m, C.int(index)) |
| 209 | } |
| 210 | |
| 211 | // RowChanged tells any Tables associated with m that the data in |
| 212 | // the row at index has changed. You do not need to call this in |
nothing calls this directly
no outgoing calls
no test coverage detected