Contains returns whether the specified TableViewColumn is found in the list.
(item *TableViewColumn)
| 64 | |
| 65 | // Contains returns whether the specified TableViewColumn is found in the list. |
| 66 | func (l *TableViewColumnList) Contains(item *TableViewColumn) bool { |
| 67 | return l.Index(item) > -1 |
| 68 | } |
| 69 | |
| 70 | // Insert inserts TableViewColumn item at position index. |
| 71 | // |