(start, end int)
| 228 | } |
| 229 | |
| 230 | func (te *TextEdit) SetTextSelection(start, end int) { |
| 231 | te.SendMessage(win.EM_SETSEL, uintptr(start), uintptr(end)) |
| 232 | } |
| 233 | |
| 234 | func (te *TextEdit) ReplaceSelectedText(text string, canUndo bool) { |
| 235 | te.SendMessage(win.EM_REPLACESEL, |
no test coverage detected