Visible returns if the *WindowBase is visible.
()
| 1337 | |
| 1338 | // Visible returns if the *WindowBase is visible. |
| 1339 | func (wb *WindowBase) Visible() bool { |
| 1340 | return win.IsWindowVisible(wb.hWnd) |
| 1341 | } |
| 1342 | |
| 1343 | // SetVisible sets if the *WindowBase is visible. |
| 1344 | func (wb *WindowBase) SetVisible(visible bool) { |