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