怎样在程序里把Font.styler的fsbold 设置为True?????

解决方案 »

  1.   

    Font.Style := Font.Style + [fsBold];
      

  2.   

    if not fsBold in Font.Style then
      Font.Style:=Font.Style+[fsBold];
      

  3.   

    ihihonline给seasands捐献了300可用分;seasands收到了:270可用分 
    我也只有53分了,都给散完了。
      

  4.   

    Font.Style := []; //清空
    Font.Style := Font.Style + [fsBold];//设置
      

  5.   

    枚举类型
    font.style:=font.style + [fsbold]
      

  6.   

    Font.Style := Font.Style - [fsBold] //它是个集合,你清化的话,其它的都怎么办?Font.Style := Font.Style + [fsBold];//