Table is a Control that shows tabular data, allowing users to manipulate rows of such data at a time.
| 66 | // Table is a Control that shows tabular data, allowing users to |
| 67 | // manipulate rows of such data at a time. |
| 68 | type Table struct { |
| 69 | ControlBase |
| 70 | t *C.uiTable |
| 71 | } |
| 72 | |
| 73 | // NewTable creates a new Table with the specified parameters. |
| 74 | func NewTable(p *TableParams) *Table { |
nothing calls this directly
no outgoing calls
no test coverage detected