Example #1
0
func GetChild(ih *Ihandle, pos int) *Ihandle {
	return (*Ihandle)(C.IupGetChild(ih.C(), C.int(pos)))
}
Example #2
0
func (h *Handle) GetChild(pos int) IHandle {
	return toHandle(C.IupGetChild(h.p, C.int(pos)))
}