Example #1
0
func (field *Field) Fore() Chtype {
	return (Chtype)(C.field_fore((*C.FIELD)(field)))
}
Example #2
0
// Foreground returns the field's foreground character attributes
func (f *Field) Foreground() Char {
	return Char(C.field_fore(f.field))
}
Example #3
0
// Foreground returns the field's foreground character attributes
func (f *Field) Foreground() Char {
	return Char(C.field_fore((*C.FIELD)(f)))
}
Example #4
0
func (f *Field) Fore() int {
	return int(C.field_fore(f.field))
}