设置字体和大小的问题,请教 ( 积分: 10 )

  • 主题发起人 主题发起人 shanmu
  • 开始时间 开始时间
S

shanmu

Unregistered / Unconfirmed
GUEST, unregistred user!
SpeedButton15.Caption:='资'+#13+'料'+#13+'录'+#13+'入';
比如要想把 资料录入 设为黑体,15号,怎么写代码呢?
 
SpeedButton15.Font.Name:=
SpeedButton15.Font.Size:=
 
哦,谢谢。要是设置空格怎么写?如:






 
SpeedButton1 不是有个font属性吗 font前面右面‘+’号 你点开
里面有charset ,height,color.... 你直接在程序里对这些细化属性赋值……
SpeedButton1.font.charset:=...
SpeedButton1.font.height:=...
 
zdwjetlee你好,关键是我要的是字竖起来的,你说的那些我也知道。但没看到有让字竖起来的属性。
 
SpeedButton没有竖排属性,要想竖排只能如下(在一个按钮或formcreate里面写):
SpeedButton1.Caption:='资'+#13+'料'+#13+'录'+#13+'入';
SpeedButton1.Font.Charset:=GB2312_CHARSET;
SpeedButton1.Font.Name:='黑体';
SpeedButton1.Font.Size:=15;
 
多人接受答案了。
 
后退
顶部