예제 #1
0
파일: forms.go 프로젝트: mpatraw/gocurse
func (field *Field) Just() int {
	return (int)(C.field_just((*C.FIELD)(field)))
}
예제 #2
0
// Just returns the justification type of the field
func (f *Field) Justification() int {
	return int(C.field_just(f.field))
}
예제 #3
0
파일: form.go 프로젝트: trotha01/goncurses
// Just returns the justification type of the field
func (f *Field) Justification() int {
	return int(C.field_just((*C.FIELD)(f)))
}
예제 #4
0
파일: form.go 프로젝트: zozor/gocurse
func (f *Field) Just() int {
	return int(C.field_just(f.field))
}