Borderless returns whether the Window is borderless.
()
| 90 | |
| 91 | // Borderless returns whether the Window is borderless. |
| 92 | func (w *Window) Borderless() bool { |
| 93 | return tobool(C.uiWindowBorderless(w.w)) |
| 94 | } |
| 95 | |
| 96 | // SetBorderless sets the Window to be borderless or not. |
| 97 | func (w *Window) SetBorderless(borderless bool) { |