示例#1
0
文件: forms.go 项目: mpatraw/gocurse
func (field *Field) Back() Chtype {
	return (Chtype)(C.field_back((*C.FIELD)(field)))
}
示例#2
0
// Background returns the field's background character attributes
func (f *Field) Background() Char {
	return Char(C.field_back(f.field))
}
示例#3
0
// Background returns the field's background character attributes
func (f *Field) Background() Char {
	return Char(C.field_back((*C.FIELD)(f)))
}
示例#4
0
文件: form.go 项目: zozor/gocurse
func (f *Field) Back() int {
	return int(C.field_back(f.field))
}