Add adds a list item at the end of the list
(item *ImageLabel)
| 87 | |
| 88 | // Add adds a list item at the end of the list |
| 89 | func (dd *DropDown) Add(item *ImageLabel) { |
| 90 | |
| 91 | dd.list.Add(item) |
| 92 | } |
| 93 | |
| 94 | // InsertAt inserts a list item at the specified position |
| 95 | // Returs true if the item was successfully inserted |
no outgoing calls
no test coverage detected