// Hide hides the Spinbox. func (s *Spinbox) Hide() { C.uiControlHide(s.c) }
// Hide hides the Entry. func (e *Entry) Hide() { C.uiControlHide(e.c) }
// Hide hides the Group. func (g *Group) Hide() { C.uiControlHide(g.c) }
// Hide hides the ProgressBar. func (p *ProgressBar) Hide() { C.uiControlHide(p.c) }
// Hide hides the Slider. func (s *Slider) Hide() { C.uiControlHide(s.c) }
// LibuiControlHide allows implementations of Control // to call the libui function uiControlHide. func LibuiControlHide(c uintptr) { C.uiControlHide(touiControl(c)) }
// Hide hides the Box. func (b *Box) Hide() { C.uiControlHide(b.c) }
// Hide hides the DateTimePicker. func (d *DateTimePicker) Hide() { C.uiControlHide(d.c) }
// Hide hides the Area. func (a *Area) Hide() { C.uiControlHide(a.c) }
// Hide hides the Window. func (w *Window) Hide() { C.uiControlHide(w.c) }
// Hide hides the Combobox. func (c *Combobox) Hide() { C.uiControlHide(c.co) }
// Hide hides the RadioButtons. func (r *RadioButtons) Hide() { C.uiControlHide(r.c) }
// Hide hides the Tab. func (t *Tab) Hide() { C.uiControlHide(t.c) }
// Hide hides the Label. func (l *Label) Hide() { C.uiControlHide(l.c) }
// Hide hides the Button. func (b *Button) Hide() { C.uiControlHide(b.c) }
// Hide hides the Separator. func (s *Separator) Hide() { C.uiControlHide(s.c) }
// Hide hides the Checkbox. func (c *Checkbox) Hide() { C.uiControlHide(c.co) }
// Hide hides the Control. func (c *control) Hide() { C.uiControlHide(c.c) }