def GetFamily(self):
val = gdic.wxFont_GetFamily(self.this)
return val
- def GetFontId(self):
- val = gdic.wxFont_GetFontId(self.this)
- return val
def GetPointSize(self):
val = gdic.wxFont_GetPointSize(self.this)
return val
def GetWeight(self):
val = gdic.wxFont_GetWeight(self.this)
return val
+ def SetFaceName(self,arg0):
+ val = gdic.wxFont_SetFaceName(self.this,arg0)
+ return val
+ def SetFamily(self,arg0):
+ val = gdic.wxFont_SetFamily(self.this,arg0)
+ return val
+ def SetPointSize(self,arg0):
+ val = gdic.wxFont_SetPointSize(self.this,arg0)
+ return val
+ def SetStyle(self,arg0):
+ val = gdic.wxFont_SetStyle(self.this,arg0)
+ return val
+ def SetUnderlined(self,arg0):
+ val = gdic.wxFont_SetUnderlined(self.this,arg0)
+ return val
+ def SetWeight(self,arg0):
+ val = gdic.wxFont_SetWeight(self.this,arg0)
+ return val
def __repr__(self):
return "<C wxFont instance>"
class wxFont(wxFontPtr):