Example #1
0
func (field *Field) Just() int {
	return (int)(C.field_just((*C.FIELD)(field)))
}
Example #2
0
// Just returns the justification type of the field
func (f *Field) Justification() int {
	return int(C.field_just(f.field))
}
Example #3
0
// Just returns the justification type of the field
func (f *Field) Justification() int {
	return int(C.field_just((*C.FIELD)(f)))
}
Example #4
0
func (f *Field) Just() int {
	return int(C.field_just(f.field))
}