func (self *Label) GetSelectionBounds() (bool, int, int) { var start C.gint var end C.gint b := C.gtk_label_get_selection_bounds(self.object, &start, &end) isSel := gobject.GoBool(unsafe.Pointer(&b)) return isSel, int(start), int(end) }
// GetSelectionBounds is a wrapper around gtk_label_get_selection_bounds(). func (v *Label) GetSelectionBounds() (start, end int, nonEmpty bool) { var cstart, cend C.gint c := C.gtk_label_get_selection_bounds(v.native(), &cstart, &cend) return int(cstart), int(cend), gobool(c) }