Example #1
0
func (field *Field) Back() Chtype {
	return (Chtype)(C.field_back((*C.FIELD)(field)))
}
Example #2
0
// Background returns the field's background character attributes
func (f *Field) Background() Char {
	return Char(C.field_back(f.field))
}
Example #3
0
// Background returns the field's background character attributes
func (f *Field) Background() Char {
	return Char(C.field_back((*C.FIELD)(f)))
}
Example #4
0
func (f *Field) Back() int {
	return int(C.field_back(f.field))
}