Example #1
0
// GetJustify is a wrapper around gtk_label_get_justify().
func (v *Label) GetJustify() Justification {
	c := C.gtk_label_get_justify(v.native())
	return Justification(c)
}
Example #2
0
func (self *Label) GetJustify() GtkJustification {
	j := C.gtk_label_get_justify(self.object)
	return GtkJustification(j)
}