func (field *Field) Just() int { return (int)(C.field_just((*C.FIELD)(field))) }
// Just returns the justification type of the field func (f *Field) Justification() int { return int(C.field_just(f.field)) }
// Just returns the justification type of the field func (f *Field) Justification() int { return int(C.field_just((*C.FIELD)(f))) }
func (f *Field) Just() int { return int(C.field_just(f.field)) }