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