Example #1
0
func (c *controlSingleHWNDWithText) setText(text string) {
	t := toUTF16(text)
	C.setWindowText(c.hwnd, t)
	c.textlen = C.controlTextLength(c.hwnd, t)
}
Example #2
0
func (w *window) SetTitle(title string) {
	C.setWindowText(w.hwnd, toUTF16(title))
}
Example #3
0
func (a *area) SetTextFieldText(text string) {
	t := toUTF16(text)
	C.setWindowText(a.textfield, t)
}
Example #4
0
func baseSetText(c textableControl, text string) {
	hwnd := c.hwnd()
	t := toUTF16(text)
	C.setWindowText(hwnd, t)
	c.settextlen(C.controlTextLength(hwnd, t))
}