// SetBackground character and attributes (colours, etc) func (f *Field) SetBackground(ch Char) error { err := C.set_field_back((*C.FIELD)(f), C.chtype(ch)) return ncursesError(syscall.Errno(err)) }
func (field *Field) SetBack(back Chtype) bool { return isOk(C.set_field_back((*C.FIELD)(field), (C.chtype)(back))) }
func (f *Field) SetBack(back int) error { return geterror(C.set_field_back(f.field, C.chtype(back))) }