//PangoWeight pango_font_description_get_weight (const PangoFontDescription *desc) G_GNUC_PURE; func (v *FontDescription) GetWeight() Weight { c := C.pango_font_description_get_weight(v.native()) return Weight(c) }
func (self *FontDescription) GetWeight() int { return int(C.pango_font_description_get_weight(self.object)) }