TableModel is an object that provides the data for a Table. This data is returned via methods you provide in the TableModelHandler interface. TableModel represents data using a table, but this table does not map directly to Table itself. Instead, you can have data columns which provide instructions
| 98 | // Row and column numbers start at 0. A TableModel can be |
| 99 | // associated with more than one Table at a time. |
| 100 | type TableModel struct { |
| 101 | m *C.uiTableModel |
| 102 | } |
| 103 | |
| 104 | // TableModelHandler defines the methods that TableModel |
| 105 | // calls when it needs data. |
nothing calls this directly
no outgoing calls
no test coverage detected