SetText sets the text of the image label
(text string)
| 53 | |
| 54 | // SetText sets the text of the image label |
| 55 | func (il *ImageLabel) SetText(text string) { |
| 56 | |
| 57 | il.label.SetText(text) |
| 58 | } |
| 59 | |
| 60 | // Text returns the current label text |
| 61 | func (il *ImageLabel) Text() string { |
no outgoing calls
no test coverage detected