コード例 #1
0
ファイル: pango-font.go プロジェクト: rosatolen/coyim
//void                 pango_font_description_set_stretch       (PangoFontDescription *desc,
//							       PangoStretch          stretch);
func (v *FontDescription) SetStretch(stretch Stretch) {
	C.pango_font_description_set_stretch(v.native(), (C.PangoStretch)(stretch))
}
コード例 #2
0
ファイル: pango.go プロジェクト: pauldub/go-gtk3
func (self *FontDescription) SetStretch(pango_Stretch int) {
	C.pango_font_description_set_stretch(self.object, C.PangoStretch(pango_Stretch))
}