SetHelp sets window help using Dynamic Annotation.
(help string)
| 142 | |
| 143 | // SetHelp sets window help using Dynamic Annotation. |
| 144 | func (a *Accessibility) SetHelp(help string) error { |
| 145 | return a.accSetPropertyStr(a.wb.hWnd, &win.PROPID_ACC_HELP, win.EVENT_OBJECT_HELPCHANGE, help) |
| 146 | } |
| 147 | |
| 148 | // SetName sets window name using Dynamic Annotation. |
| 149 | func (a *Accessibility) SetName(name string) error { |
no test coverage detected