NewTableViewWithStyle creates and returns a *TableView as child of the specified Container and with the provided additional style bits set.
(parent Container, style uint32)
| 138 | // NewTableViewWithStyle creates and returns a *TableView as child of the specified |
| 139 | // Container and with the provided additional style bits set. |
| 140 | func NewTableViewWithStyle(parent Container, style uint32) (*TableView, error) { |
| 141 | return NewTableViewWithCfg(parent, &TableViewCfg{Style: style}) |
| 142 | } |
| 143 | |
| 144 | // NewTableViewWithCfg creates and returns a *TableView as child of the specified |
| 145 | // Container and with the provided additional configuration. |
no test coverage detected
searching dependent graphs…