label1.font.style:=[fsBold];
可以设置字体为粗体,我想设置更粗,怎么办?

解决方案 »

  1.   

    两个label,同样caption,移一下位
      

  2.   

    按照你们所说的
      我打印时
     Canvas.Font.Style:=[fsBold];  怎样设置粗度呢??
      

  3.   

    LOGFONT LogFont;
    这个可能对你有帮助,详细的请看帮助!
    lfWeightSpecifies the weight of the font in the range 0 through 1000. For example, 400 is normal and 700 is bold. If this value is zero, a default weight is used.
    The following values are defined for convenience:Value Weight
    FW_DONTCARE 0
    FW_THIN 100
    FW_EXTRALIGHT 200
    FW_ULTRALIGHT 200
    FW_LIGHT 300
    FW_NORMAL 400
    FW_REGULAR 400
    FW_MEDIUM 500
    FW_SEMIBOLD 600
    FW_DEMIBOLD 600
    FW_BOLD 700
    FW_EXTRABOLD 800
    FW_ULTRABOLD 800
    FW_HEAVY 900
    FW_BLACK 900