示例#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
// 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))
}